/* Google Sign-In Button Styles */
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    background: white;
    color: #1f1f1f;
    border: 2px solid #dadce0;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: #c6c9cc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-google:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.btn-google::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(66, 133, 244, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-google:hover::before {
    left: 100%;
}

.google-icon {
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.btn-google span {
    font-family: 'Cairo', sans-serif;
}

/* Dark Mode Support */
body.dark-mode .btn-google {
    background: rgba(255, 255, 255, 0.05);
    color: var(--dark-text);
    border-color: rgba(255, 255, 255, 0.15);
}

body.dark-mode .btn-google:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Auth Divider (the "or" line) Enhancement */
.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.dark-mode .auth-divider::before,
body.dark-mode .auth-divider::after {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.auth-divider span {
    padding: 0 15px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    background: var(--background-color);
}

body.dark-mode .auth-divider span {
    background: var(--dark-bg);
}