/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body Styles */
body {
    background-color: #121212; /* Dark background */
    color: #f5f5f5; /* Light text */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container */
.login-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Login Box */
.login-box {
    background-color: #1e1e1e; /* Dark box background */
    padding: 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Softer shadow */
}

/* Logo Styles */
.logo {
    width: 150px;
    height: 150px;
    margin-bottom: 25px;
}

/* Heading */
h2 {
    font-size: 24px;
    color: #f5f5f5; /* Light heading color */
    margin-bottom: 30px;
}

/* Input Fields */
.input-box {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    font-size: 14px;
    color: #f5f5f5; /* Light label color */
    margin-bottom: 5px;
margin-left:10px;
}

input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"],
input[type="id_proof"],
input[type="file"],
input[type="select"],
input[type="subscription"],select
{
    width: 100%;
    padding: 10px;
    background-color: #333; /* Dark input background */
    border: 1px solid #555; /* Dark border */
    color: #f5f5f5; /* Light text */
    border-radius: 55px;
    font-size: 14px;

}

/* Button Styles */
button {
    width: 100%;
    padding: 10px;
    background-color: #007bff; /* Bright blue button */
    color: white;
    border: none;
    border-radius: 55px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Forgot Password Link */
.forgot-password {
    text-align: right;
    margin-bottom: 20px;
}

.forgot-password a {
    color: #007bff; /* Bright blue link */
    text-decoration: none;
    font-size: 14px;
}

.forgot-password a:hover {
    text-decoration: underline;
}

/* Signup Link */
.signup-link {
    font-size: 14px;
}

.signup-link a {
    color: #007bff; /* Bright blue link */
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

