/* ============================================================
   TeamTracker - Auth Styles
   Shared by: login.html, register.html
   OAuth divider + OAuth provider buttons
   ============================================================ */

/* ----- OAuth Divider ----- */
.oauth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.oauth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.oauth-divider span {
    background: rgba(26, 31, 44, 1);
    padding: 0 1rem;
    position: relative;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ----- OAuth Buttons ----- */
.oauth-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-oauth {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-oauth:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.btn-oauth svg {
    margin-right: 8px;
}

/* ----- Email Help (register) ----- */
.email-help-text {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}