/* Authentication Modal Styling */
.auth-modal .modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.auth-modal .modal-header {
    border-bottom: none;
    padding: 2rem 2rem 0.5rem;
}

.auth-modal .modal-body {
    padding: 1.5rem 2rem 2.5rem;
}

.auth-modal .btn-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    z-index: 10;
}

/* Animated gradient background checkmark/icon */
.auth-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.3);
    animation: fadeScale 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.auth-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

@keyframes fadeScale {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 12px;
    background: white;
    border: 1px solid #e1e4e8;
    border-radius: 12px;
    color: #374151;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.google-btn:hover {
    background: #f8fafc;
    border-color: #d1d5db;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.google-btn:active {
    transform: translateY(0);
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: #6b7280;
    font-size: 0.875rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.auth-divider span {
    padding: 0 0.75rem;
}

.feature-list {
    text-align: left;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: 12px;
}

.feature-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list i {
    color: var(--success-color);
}

.auth-page {
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.auth-page > .row {
    width: 100%;
}

.auth-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    padding: 2rem;
}

.auth-input {
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    border-color: #e5e7eb;
}

.auth-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.12);
}