/* Login page styles */
body.app-blank {
    background-color: #374151 !important;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.015) 35px, rgba(255,255,255,.015) 70px),
        linear-gradient(to bottom, #4b5563, #374151) !important;
    min-height: 100vh !important;
}
.auth-wrapper { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.auth-card { max-width: 400px; width: 100%; }
.otp-input {
    width: 50px; height: 50px; font-size: 1.5rem; text-align: center;
    border: 2px solid var(--bs-gray-300); border-radius: 8px; margin: 0 0.25rem;
}
.otp-input:focus { border-color: var(--bs-primary); outline: none; }
.btn-primary { min-height: 48px; height: 48px; }
.toast-notification {
    position: fixed; top: 20px; right: 20px; z-index: 9999;
    background: #fff; color: #1e1e2d; padding: 1rem 1.25rem; border-radius: 10px;
    box-shadow: 0 6px 24px rgba(0,0,0,.2); display: flex; align-items: center; gap: 12px;
    min-width: 300px; max-width: 420px;
    transition: opacity .4s, transform .4s;
}
.toast-icon {
    width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
