/* General Body Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Auth Container */
.auth-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
    text-align: center;
}



/* Form Group */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Submit Button */
.btn {
    background-color: #007bff;
    color: #fff;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Form Footer */
.form-footer {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #555;
}

.form-footer a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-footer a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Dark Mode */
body.dark-mode {
    background-color: #121212;
    color: #f4f4f4;
}

body.dark-mode .auth-container {
    background-color: #1e1e1e;
    box-shadow: 0 10px 15px rgba(255, 255, 255, 0.1);
}

body.dark-mode .form-group label {
    color: #ccc;
}

body.dark-mode .form-group input {
    background-color: #2c2c2c;
    color: #f4f4f4;
    border: 1px solid #444;
}

body.dark-mode .form-group input:focus {
    border-color: #64b5f6;
    box-shadow: 0 0 5px rgba(100, 181, 246, 0.5);
}

body.dark-mode .btn {
    background-color: #64b5f6;
}

body.dark-mode .btn:hover {
    background-color: #42a5f5;
}

body.dark-mode .form-footer a {
    color: #64b5f6;
}
