/* ==========================================================================
   AUTH PAGES STYLES
   Social login, admin login, password reset pages
   ========================================================================== */

.auth-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin-top: -0.5rem;
    padding: 2rem 0;
}

.auth-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-header {
    background: var(--gradient-brand);
    color: white;
    padding: 2rem;
    text-align: center;
}

.auth-body {
    padding: 2.5rem;
}

.school-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: block;
    background: white;
    border-radius: 50%;
    padding: 10px;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--success-color-10, rgba(40, 167, 69, 0.1));
    color: var(--success-color, #28a745);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.security-badge i {
    font-size: 1rem;
}

.provider-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-bg, #f8f9fa);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.provider-logo {
    width: 40px;
    height: 40px;
}

.arrow-icon {
    color: var(--text-muted, #6c757d);
    font-size: 1.5rem;
}

.dana-logo-small {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.continue-btn {
    background: var(--gradient-brand);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 10px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(50, 53, 125, 0.4);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.info-list li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #495057;
}

.info-list i {
    color: var(--status-approved);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color, #e9ecef);
    color: var(--text-muted, #6c757d);
    font-size: 0.875rem;
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--dana-blue-dark);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-loading .loading-spinner {
    display: inline-block;
}

.btn-loading .btn-text {
    display: none;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .auth-body {
        padding: 1.5rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
}
