/* Modern authentication pages — tenant admin & super admin */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

.auth-panel-form {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #fff;
}

.auth-panel-visual {
    flex: 1;
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 50%, #198754 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.auth-panel-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><circle cx="650" cy="100" r="180" fill="rgba(255,255,255,0.08)"/><circle cx="120" cy="480" r="140" fill="rgba(255,255,255,0.06)"/></svg>') center/cover no-repeat;
}

.auth-visual-content {
    position: relative;
    z-index: 1;
    max-width: 420px;
}

.auth-form-wrap {
    width: 100%;
    max-width: 420px;
}

.auth-logo {
    max-height: 56px;
    margin-bottom: 1rem;
}

.btn-auth-loading {
    position: relative;
    pointer-events: none;
}

.btn-auth-loading .spinner-border {
    width: 1rem;
    height: 1rem;
}

@media (max-width: 991.98px) {
    .auth-panel-visual {
        display: none;
    }
}
