/* OAuth Button Styles - Google Sign-In */

.btn-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    margin-bottom: 16px;
    box-sizing: border-box;
}

.btn-google:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--shadow-light);
}

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

.google-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Light mode adjustments */
[data-theme="light"] .btn-google {
    background: white;
    border: 1px solid #dadce0;
}

[data-theme="light"] .btn-google:hover {
    background: #f8f9fa;
    border-color: #dadce0;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3);
}

/* Divider styles */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.auth-divider-line {
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.auth-divider-text {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .btn-google {
        padding: 11px 16px;
        font-size: 14px;
    }

    .google-icon {
        width: 18px;
        height: 18px;
    }
}
