*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Segoe UI, sans-serif;
}

body{
    background:#2563eb;
    color: #ffffff;
}

/* Header */
.app-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#2563eb;
    color:#fff;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.header-container {
    width: 100%;
    max-width: 490px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.header-left,
.header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.header-center{
    flex:1;
    margin-left:15px;

}

.header-center h1{
    font-size:18px;
    font-weight:600;
}

.header-center span{
    font-size:12px;
    opacity:0.8;
}

.icon-btn{
    position:relative;
    border:none;
    background:none;
    color:#fff;
    font-size:20px;
    cursor:pointer;
}

.badge{
    position:absolute;
    top:-6px;
    right:-8px;

    width:18px;
    height:18px;

    background:#ef4444;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:10px;
    font-weight:bold;
}

.profile-img{
    width:40px;
    height:40px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,0.5);
}

.content{
    padding:0px;
    margin:16px 20px 40px 20px;

}

/* App menu bar (horizontal buttons) */
.app-menu-bar{
    width:100%;
    display:block;
    margin-top:12px;
    position:sticky;
    top:72px;
    z-index:850;
}

.menu-card{
    background:#ffffff;
    border-radius:20px 20px 0 0;
    padding:12px;
    max-width:490px;
    min-height: 100vh;
    height: auto;
    margin:0 auto;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    padding-bottom: 140px;
}

.menu-buttons{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:12px;
    padding:0;
    margin:0;
}

.menu-btn{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:18px 10px;
    background:transparent;
    color:#2563eb;
    text-decoration:none;
    border-radius:12px;
    font-weight:700;
    border:1px solid transparent;
    transition:background .12s, transform .08s, color .12s, box-shadow .12s;
}

.menu-btn i{
    font-size:30px;
    line-height:1;
    color:#2563eb;
}

.menu-btn span{
    display:block;
    font-size:13px;
    margin-top:4px;
    color:inherit;
}

.menu-btn:hover{
    background:rgba(37,99,235,0.06);
    color:#2563eb;
    transform:translateY(-2px);
}

.menu-btn:focus{
    outline:3px solid rgba(37,99,235,0.18);
    outline-offset:2px;
}

.menu-btn.active{
    background:rgba(37,99,235,0.1);
    color:#2563eb;
    box-shadow:0 4px 12px rgba(37,99,235,0.15);
    transform:translateY(-2px);
    border-color:rgba(37,99,235,0.2);
}

@media (max-width:900px){
    .menu-buttons{
        grid-template-columns:repeat(4, 1fr);
    }
}

@media (max-width:480px){
    .menu-buttons{
        grid-template-columns:repeat(4, 1fr);
        gap:8px;
        padding:6px;
    }
    .menu-btn i{
        font-size:26px;
    }
    .menu-btn span{ font-size:12px; }
}

/* ——— Halaman absensi (kamera) ——— */
.absensi-body {
    min-height: 100vh;
    padding-bottom: 0;
}

.header-time {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.95;
}

.absensi-page {
    max-width: 490px;
    margin: 0 auto;
    padding: 12px 16px 0;
}

.absensi-card {
    background: #ffffff;
    color: #0f172a;
    border-radius: 20px 20px 0 0;
    padding: 20px 16px 24px;
    min-height: calc(100vh - 72px);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
}

.absensi-greeting {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.absensi-greeting p {
    font-size: 15px;
    color: #334155;
    margin: 0;
}

.absensi-greeting strong {
    color: #0f172a;
}

.absensi-badge {
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

.absensi-badge--checkin {
    background: #dbeafe;
    color: #1d4ed8;
}

.absensi-badge--checkout {
    background: #fef3c7;
    color: #b45309;
}

.absensi-badge--done {
    background: #d1fae5;
    color: #047857;
}

.absensi-alert {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 1.45;
}

.absensi-alert--success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.absensi-alert--error {
    background: #fff1f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.absensi-alert--info {
    background: #f1f5f9;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

.absensi-record {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.record-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.record-item i {
    font-size: 18px;
    color: #2563eb;
}

.record-item span {
    display: block;
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.record-item strong {
    font-size: 15px;
    color: #0f172a;
}

.camera-shell {
    margin-top: 4px;
}

.camera-viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: 420px;
    border-radius: 16px;
    overflow: hidden;
    background: #0f172a;
    border: 3px solid #e2e8f0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.camera-viewport.is-live {
    border-color: #2563eb;
}

.camera-viewport #video,
.camera-viewport .camera-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.camera-viewport #video.is-hidden {
    visibility: hidden;
}

.camera-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    background: rgba(15, 23, 42, 0.82);
    color: #fff;
    text-align: center;
    cursor: pointer;
}

.camera-overlay[hidden] {
    display: none !important;
}

.overlay-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.camera-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.btn-camera-start {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.45);
}

.btn-camera-start:active {
    transform: scale(0.98);
}

.camera-viewport.is-live .camera-loading {
    display: none !important;
}

.camera-loading {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(15, 23, 42, 0.65);
    color: #fff;
    font-size: 14px;
}

.camera-loading[hidden] {
    display: none !important;
}

.camera-viewport.is-loading #video {
    opacity: 0.3;
}

.camera-hint {
    font-size: 13px;
    color: #64748b;
    text-align: center;
    margin: 12px 0 16px;
    line-height: 1.4;
}

.camera-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.camera-actions--single {
    grid-template-columns: 1fr;
}

.camera-actions .btn-submit {
    grid-column: 1 / -1;
}

.camera-actions--single .btn-submit {
    grid-column: auto;
}

.btn-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 10px;
    border: none;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.1s, opacity 0.15s;
}

.btn-action:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.btn-action:not(:disabled):active {
    transform: scale(0.97);
}

.btn-action i {
    font-size: 22px;
}

.btn-snap {
    background: #f1f5f9;
    color: #1e40af;
    border: 2px solid #bfdbfe;
}

.btn-retake {
    background: #fff7ed;
    color: #c2410c;
    border: 2px solid #fed7aa;
}

.btn-submit {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    padding: 16px;
    font-size: 15px;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.btn-submit i {
    font-size: 20px;
}

.absensi-done {
    text-align: center;
    padding: 40px 20px;
    color: #047857;
}

.absensi-done i {
    font-size: 48px;
    margin-bottom: 12px;
}

.absensi-done p {
    font-size: 15px;
    color: #334155;
    margin: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.icon-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 480px) {
    .camera-viewport {
        max-height: 360px;
    }

    .camera-actions {
        gap: 8px;
    }
}

/* Dashboard Attendance History */
.history-section {
    margin-top: 24px;
    padding: 16px 8px 0;
    border-top: 1px solid #f1f5f9;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.history-header h3 {
    font-size: 15px;
    color: #1e293b;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.history-header h3 i {
    color: #2563eb;
}

.history-subtitle {
    font-size: 10px;
    background: #f1f5f9;
    color: #475569;
    padding: 3px 8px;
    border-radius: 999px;
    font-weight: 600;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.history-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.history-item:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.history-date {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.day-name {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.date-val {
    font-size: 11px;
    color: #64748b;
}

.history-times {
    display: flex;
    gap: 16px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    min-width: 80px;
}

.time-label {
    font-size: 10px;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.block-masuk .time-label i {
    color: #16a34a;
}

.block-pulang .time-label i {
    color: #ea580c;
}

.time-val {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.photo-link {
    font-size: 10px;
    color: #2563eb;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-weight: 600;
    margin-top: 2px;
    padding: 2px 6px;
    background: #eff6ff;
    border-radius: 4px;
    transition: all 0.15s ease;
}

.photo-link:hover {
    background: #dbeafe;
    color: #1d4ed8;
}

.empty-history {
    text-align: center;
    padding: 30px 10px;
    color: #64748b;
}

.empty-history i {
    font-size: 32px;
    color: #cbd5e1;
    margin-bottom: 8px;
}

.empty-history p {
    font-size: 13px;
    margin: 0;
}

/* Success Modal styling */
.absensi-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease forwards;
}

.absensi-modal-content {
    background: #ffffff;
    color: #0f172a;
    width: 100%;
    max-width: 400px;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(20px);
    animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.modal-success-icon {
    width: 72px;
    height: 72px;
    background: #ecfdf5;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
}

.absensi-modal-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.modal-message {
    font-size: 14px;
    color: #475569;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.btn-modal-ok {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 14px;
    background: #2563eb;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
    transition: all 0.2s ease;
}

.btn-modal-ok:hover {
    background: #1d4ed8;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
    transform: translateY(-1px);
}

.btn-modal-ok:active {
    transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-scale {
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

@keyframes popIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Glassmorphic Work Hours Card */
.work-hours-glass {
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.work-hours-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.work-hours-item:last-child {
    align-items: flex-end;
}

.hours-label {
    font-size: 11px;
    opacity: 0.85;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hours-time {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.work-hours-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.25);
    margin: 0 16px;
}

/* Dashboard Page Layout */
.dashboard-page {
    max-width: 490px;
    margin: 0 auto;
    padding: 0 16px;
}

.dashboard-page .content {
    margin: 16px 0 24px 0;
    padding: 0;
}

/* Deduction Details Card */
.deduction-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    margin: 0 auto 20px;
    max-width: 490px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    color: #1e293b;
}

.deduction-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.deduction-card-header i {
    color: #2563eb;
    font-size: 16px;
}

.deduction-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px dashed #f1f5f9;
    transition: all 0.2s ease;
}

.deduction-row:last-of-type {
    border-bottom: none;
}

.deduction-label {
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.deduction-label i {
    width: 16px;
    text-align: center;
    color: #94a3b8;
}

.deduction-value {
    font-weight: 600;
    color: #1e293b;
}

.deduction-positive {
    color: #16a34a !important;
}

.deduction-negative {
    color: #dc2626 !important;
}

.deduction-row--active {
    background: #fff5f5;
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 8px;
    border-bottom-color: transparent;
}

.deduction-count {
    font-size: 10px;
    background: #fee2e2;
    color: #dc2626;
    padding: 2px 6px;
    border-radius: 999px;
    font-weight: 700;
    margin-left: 6px;
    text-transform: uppercase;
}

.deduction-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 12px 0;
}

.deduction-label--bold {
    font-weight: 700;
    color: #1e293b;
}

.deduction-value--bold {
    font-weight: 700;
}

.deduction-row--total {
    background: #eff6ff;
    margin-left: -20px;
    margin-right: -20px;
    padding: 14px 20px;
    border-radius: 0 0 16px 16px;
    border-top: 1px solid #bfdbfe;
    border-bottom: none;
    margin-top: 10px;
}

.deduction-final {
    color: #2563eb !important;
    font-size: 16px;
}

/* Today's Status Badges */
.status-badge-hadir {
    background: #dcfce7;
    color: #15803d;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #bbf7d0;
}

.status-badge-absen {
    background: #fee2e2;
    color: #b91c1c;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #fecaca;
}

/* --- Landing & Auth Pages Modern Styling --- */
.landing-wrapper, .auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
    margin: -16px -20px -40px -20px; /* offset the body margin if any */
}

/* For pages that don't need body margin */
body.landing-page, body.auth-page {
    margin: 0;
    padding: 0;
    background: #1e3a8a;
}
body.landing-page .landing-wrapper, body.auth-page .auth-wrapper {
    margin: 0;
}

.landing-wrapper::before, .auth-wrapper::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    top: -200px;
    left: -200px;
    border-radius: 50%;
    z-index: 0;
}

.landing-wrapper::after, .auth-wrapper::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 70%);
    bottom: -100px;
    right: -100px;
    border-radius: 50%;
    z-index: 0;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 1;
    position: relative;
}

/* Landing Page */
.intro-panel {
    max-width: 500px;
    padding: 40px;
    text-align: center;
}

.brand-mark-modern {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 800;
    margin: 24px 0 16px;
    color: #fff;
}

.hero-title .highlight {
    color: #93c5fd;
}

.text-muted {
    color: rgba(255, 255, 255, 0.7);
}

.lead {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #fff;
    color: #1d4ed8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    background: #f8fafc;
}

.btn-block {
    width: 100%;
}

/* Auth Page */
.auth-card {
    width: 100%;
    max-width: 400px;
    padding: 40px 32px;
}

.auth-brand {
    text-align: center;
    margin-bottom: 24px;
}

.auth-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: #fff;
}

.auth-subtitle {
    text-align: center;
    margin-bottom: 32px;
    font-size: 14px;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.input-modern {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 15px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.input-modern::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.input-modern:focus {
    outline: none;
    border-color: #60a5fa;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

.alert {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.auth-footer {
    text-align: center;
    margin-top: 32px;
    font-size: 12px;
}