.login-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.login-container h2 {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 30px;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.btn-login:hover {
    background: #45a049;
}

.error {
    background: #ffebee;
    color: #c62828;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #c62828;
}

.success-message {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #2e7d32;
}

.links-section {
    text-align: center;
    margin-top: 20px;
}

.links-section p {
    margin: 10px 0;
}

.links-section a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.links-section a:hover {
    text-decoration: underline;
}

.forgot-password-info,
.reset-password-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
    color: #666;
}

.contact-support {
    margin-top: 30px;
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    text-align: center;
}

.contact-support a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.contact-support a:hover {
    text-decoration: underline;
}

/* Icon styles */
.fas {
    margin-right: 8px;
}

/* Responsive design */
@media (max-width: 480px) {
    .login-container {
        margin: 20px;
        padding: 20px;
    }
    
    .login-container h2 {
        font-size: 1.5rem;
    }
} 