/**
 * Google OAuth Button Styles
 * 
 * @package BlogThree_Core
 * @since 2.0.0
 */

/* Google Login Button - Base Style */
.blogthree-google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blogthree-google-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

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

/* Google Icon */
.blogthree-google-btn .google-icon {
    flex-shrink: 0;
}

/* Social Login Container */
.blogthree-social-login {
    margin: 20px 0;
    text-align: center;
}

.blogthree-social-login .button {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    padding: 12px 20px;
    background: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    color: #3c4043;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.blogthree-social-login .button:hover {
    background: #f8f9fa;
    border-color: #c6c6c6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Divider */
.blogthree-social-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #6b7280;
    font-size: 14px;
}

.blogthree-social-divider::before,
.blogthree-social-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.blogthree-social-divider span {
    padding: 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* WordPress Login Page Override */
.login .blogthree-social-login .button {
    display: flex !important;
    margin: 0 auto;
}

/* Error Message */
#login_error strong {
    color: #ef4444;
}

/* Responsive */
@media (max-width: 480px) {
    .blogthree-google-btn {
        width: 100%;
        padding: 14px 20px;
    }

    .blogthree-social-login .button {
        max-width: 100%;
    }
}