/* Login Page Styles */
.login-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h3 {
    color: #0066cc;
    font-size: 24px;
    margin-bottom: 10px;
}

.login-header p {
    color: #666;
    font-size: 14px;
}

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

.form-control {
    height: 45px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.checkbox {
    margin-top: 10px;
}

.checkbox label {
    color: #666;
    font-size: 14px;
}

.btn-login {
    background: #0066cc;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    border: none;
    width: 100%;
    font-size: 16px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #0052a3;
    transform: translateY(-2px);
    color: white;
}

.forgot-password {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: #0052a3;
    text-decoration: underline;
}

.help-block {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
}

.has-error .form-control {
    border-color: #dc3545;
}

.has-error .help-block {
    color: #dc3545;
}

/* Responsive Styles */
@media (max-width: 576px) {
    .login-form {
        padding: 15px;
    }
    
    .login-header h3 {
        font-size: 20px;
    }
    
    .btn-login {
        font-size: 14px;
        padding: 10px 20px;
    }
} 