/* Auth Pages Styling */
:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #f59e0b;
    --text-color: #1f2937;
    --error-color: #dc2626;
    --success-color: #059669;
}

.auth-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.auth-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.auth-header {
    text-align: center;
    padding: 1.5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    
}

.auth-header h1 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
}

.auth-body {
    padding: 2rem;
}

.form-label {
    display: block;   
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form-control-auth {
    display: block;
    width: 100%;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
    margin-bottom: 0.5rem;
}

.form-control-auth:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(59,130,246,0.1);
    background: #fff;
    outline: none;
}

/* Captcha Styling */
.captcha-container {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.captcha-input {
    margin-top: 0.75rem;
}

.captcha-image {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.captcha-image img {
    border-radius: 0.25rem;
    border: 1px solid #e5e7eb;
}

.refresh-button {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.refresh-button:hover {
    background: #f9fafb;
    border-color: var(--secondary-color);
}

.auth-btn {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-auth {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
}

.btn-primary-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59,130,246,0.2);
}

.btn-google-auth {
    background: #fff;
    border: 2px solid #e5e7eb;
    color: var(--text-color);
}

.btn-google-auth:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.auth-divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #e5e7eb;
}

.auth-divider::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #e5e7eb;
}

.auth-divider span {
    background: #fff;
    padding: 0 1rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.auth-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.auth-link:hover {
    color: var(--primary-color);
}

.form-check-auth {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.form-check-auth input[type="checkbox"] {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 0.25rem;
    border: 2px solid #e5e7eb;
}

.error-feedback {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Responsiveness */
@media (max-width: 768px) {
   
}
