.login {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    color: #eee; /* Light text */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin-top: 60px;
}

.login-container {
    background-color: #222;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    padding: 30px;
    width: 400px;
    text-align: center;
}

.login-header {
    margin-bottom: 25px;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: contain;
    margin-bottom: 15px;
}

h2 {
    color: #ff3b30; /* Primary red */
    margin-top: 0;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    color: #ddd;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    padding: 12px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #333;
    color: #eee;
    box-sizing: border-box;
    width: 100%;
    font-size: 1rem;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #ff3b30;
    outline: none;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 40px; /* Adjust based on input height */
    cursor: pointer;
    color: #777;
    user-select: none;
}

.login-button {
    background-color: #ff3b30; /* Primary red */
    color: white;
    padding: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: #cc2922; /* Darker red */
}

.login-options {
    margin-top: 20px;
    text-align: center;
}

.login-options a {
    color: #777;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
}

.login-options a:hover {
    color: #ddd;
}

.error-message {
    color: #ff9500; /* Accent color */
    margin-top: 15px;
    font-size: 0.9rem;
}