/* =====================================================
   AUTH PAGES (Login & Register)
   ===================================================== */

/* Benefits Section */
.benefits-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 32px;
}

.benefit-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    border: 1px solid #e9ecef;
    transition: box-shadow 0.2s;
}

.benefit-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
}

.benefit-card.user .icon {
    background: #e3f2fd;
    color: #1976d2;
}

.benefit-card.cpa .icon {
    background: #e8f5e9;
    color: #388e3c;
}

.benefit-card.firm .icon {
    background: #fff3e0;
    color: #f57c00;
}

.benefit-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.benefit-card ul {
    margin: 0;
    padding-left: 18px;
}

.benefit-card ul li {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

/* Highlight Box (Register page) */
.highlight-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    border-left: 4px solid #4caf50;
}

.highlight-box h5 {
    color: #2e7d32;
    margin-bottom: 8px;
}

.highlight-box p {
    margin: 0;
    color: #33691e;
}

/* Google Sign-In Button */
.btn-google {
    background-color: #fff;
    border: 2px solid #dadce0;
    color: #3c4043;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.btn-google:hover {
    background-color: #f7f8f8;
    border-color: #c6c8ca;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.15);
    color: #3c4043;
}

.btn-google:active {
    background-color: #eef0f1;
    border-color: #b0b3b5;
}

.btn-google svg {
    flex-shrink: 0;
}

/* Form Validation Overrides */
.form-control.is-valid {
    border-color: var(--fluent-success);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23107c10' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
}

.form-control.is-invalid {
    border-color: var(--fluent-error);
}

.invalid-feedback {
    color: var(--fluent-error);
}

.border-end {
    border-color: var(--fluent-neutral-light) !important;
}

/* Register Page Specific */
.btn-check:checked + .btn-outline-primary {
    background-color: var(--fluent-primary);
    border-color: var(--fluent-primary);
    color: white;
}

.password-strength .progress {
    background-color: var(--fluent-neutral-light);
}
