/* ─── Bootstrap Auth — Frontend Styles ────────────────────────── */

.bsauth-wrapper {
    padding: 2rem 1rem;
}

.bsauth-card {
    transition: box-shadow 0.15s ease;
}

.bsauth-title {
    font-weight: 700;
    color: #111;
}

/* ─── Status Messages ────────────────────────────────────────── */

.bsauth-message {
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.925rem;
}
.bsauth-message.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.bsauth-message.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ─── Social Buttons ─────────────────────────────────────────── */

.bsauth-divider {
    position: relative;
    color: #9ca3af;
    font-size: 0.85rem;
}
.bsauth-divider::before,
.bsauth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e5e7eb;
}
.bsauth-divider::before {
    left: 0;
}
.bsauth-divider::after {
    right: 0;
}
.bsauth-divider span {
    background: #fff;
    padding: 0 0.75rem;
    position: relative;
    z-index: 1;
}

.bsauth-social-buttons {
    gap: 0.5rem;
}

.bsauth-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.925rem;
    text-decoration: none;
    transition: all 0.15s ease;
    border: 1px solid #d1d5db;
    color: #374151;
    background: #fff;
}
.bsauth-social-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    color: #111;
}

.bsauth-social-btn.btn-facebook {
    background: #1877F2;
    color: #fff;
    border-color: #1877F2;
}
.bsauth-social-btn.btn-facebook:hover {
    background: #1666d1;
}

.bsauth-social-btn.btn-google {
    background: #fff;
    color: #374151;
    border-color: #d1d5db;
}
.bsauth-social-btn.btn-google:hover {
    background: #f9fafb;
}

.bsauth-social-btn.btn-x {
    background: #000;
    color: #fff;
    border-color: #000;
}
.bsauth-social-btn.btn-x:hover {
    background: #1a1a1a;
}

/* ─── Submit button loader ───────────────────────────────────── */

.bsauth-wrapper form button[type="submit"].bsauth-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}
.bsauth-wrapper form button[type="submit"].bsauth-loading::after {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: bsauth-spin 0.6s linear infinite;
    vertical-align: middle;
}

@keyframes bsauth-spin {
    to { transform: rotate(360deg); }
}

/* ─── Avatar ─────────────────────────────────────────────────── */

.bsauth-avatar {
    user-select: none;
}
