/* ========================================
   Authentication Modal Styles
======================================== */
.auth-modal {
    max-width: 420px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-description {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.link-btn {
    background: none;
    border: none;
    color: var(--vortex-accent);
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    text-align: right;
    margin-top: -8px;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.link-btn:hover {
    color: var(--vortex-glow);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--white-10);
}

.auth-divider span {
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 600;
}

.btn-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    background: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-google:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.auth-toggle {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray-400);
}

.auth-toggle .link-btn {
    display: inline;
    margin: 0 0 0 4px;
}