/* Login Card Styles */
.login-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 30px;
}

.login-card-header {
    background: linear-gradient(135deg, #0082cf 0%, #00629D 100%);
    padding: 40px 30px;
    text-align: center;
    color: #fff;
}

.login-card-header h3 {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 8px;
}

.login-card-header p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.login-card-body {
    padding: 40px 30px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #12567f;
    font-family: 'Inter', sans-serif;
    margin-bottom: 8px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon > i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0082cf;
    font-size: 16px;
}

.input-with-icon .form-control {
    padding-left: 45px;
    padding-right: 45px;
    height: 50px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.input-with-icon .form-control:focus {
    border-color: #0082cf;
    box-shadow: 0 0 0 3px rgba(0, 130, 207, 0.1);
    outline: none;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6b7280;
    transition: color 0.3s;
}

.password-toggle:hover {
    color: #0082cf;
}

.form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
}

.form-check-input:checked {
    background-color: #0082cf;
    border-color: #0082cf;
}

.form-check-label {
    font-size: 14px;
    color: #4b5563;
    margin-left: 8px;
    user-select: none;
}

.btn-login {
    background: linear-gradient(90deg, #0082cf, #58b5eb);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    padding: 14px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-login:hover {
    background: linear-gradient(90deg, #006bb3, #4aa3d8);
    box-shadow: 0 8px 20px rgba(0, 130, 207, 0.3);
    transform: translateY(-2px);
}

.forgot-password {
    color: #0082cf;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #12567f;
    text-decoration: underline;
}

.login-card-footer {
    background: #f9fafb;
    padding: 20px 30px;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

.login-card-footer p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

.register-link {
    color: #0082cf;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.register-link:hover {
    color: #12567f;
    text-decoration: underline;
}

/* Social Login Styles */
.social-login {
    text-align: center;
}

.divider {
    position: relative;
    margin: 30px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.divider span {
    position: relative;
    background: #fff;
    padding: 0 15px;
    color: #9ca3af;
    font-size: 14px;
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-btn {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-btn:hover {
    border-color: #0082cf;
    background: #f0f9ff;
    transform: translateY(-2px);
}

.social-btn i {
    font-size: 18px;
}

.google-btn {
    color: #ea4335;
}

.microsoft-btn {
    color: #00a4ef;
}

/* Responsive */
@media (max-width: 768px) {
    .login-card-header {
        padding: 30px 20px;
    }
    
    .login-card-header h3 {
        font-size: 24px;
    }
    
    .login-card-body {
        padding: 30px 20px;
    }
    
    .social-buttons {
        flex-direction: column;
    }
}