:root {
    --bg: #f5f7fb;
    --surface: #ffffff;
    --text: #17202a;
    --muted: #667085;
    --line: #d9e2ec;
    --primary: #0b7a75;
    --primary-dark: #075e59;
    --accent: #b7791f;
    --danger: #b42318;
    --success: #027a48;
    --shadow: 0 14px 35px rgba(16, 24, 40, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 270px 1fr;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: var(--primary);
    text-decoration: none;
}

.sidebar {
    min-height: 100vh;
    padding: 24px;
    background: #111827;
    color: #fff;
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 32px;
}

.brand-mark {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 8px;
    background: var(--primary);
    font-weight: 700;
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: #cbd5e1;
    margin-top: 3px;
}

.nav {
    display: grid;
    gap: 8px;
}

.nav a {
    padding: 12px 14px;
    border-radius: 8px;
    color: #e5e7eb;
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.08);
}

.main {
    padding: 32px;
}

.page-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.page-header h1 {
    margin: 0;
    font-size: 30px;
}

.page-header p {
    margin: 8px 0 0;
    color: var(--muted);
}

.eyebrow {
    margin: 0 0 8px !important;
    color: var(--accent) !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font-weight: 700;
    cursor: pointer;
}

.button.primary {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.button.primary:hover {
    background: var(--primary-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat,
.panel,
.form-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.stat {
    padding: 20px;
}

.stat span {
    color: var(--muted);
}

.stat strong {
    display: block;
    margin-top: 10px;
    font-size: 34px;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    gap: 18px;
}

.chart-panel {
    margin-bottom: 24px;
}

.panel-note,
.trend-badge {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.trend-badge {
    padding: 7px 10px;
    border-radius: 8px;
    background: #ecfdf3;
    color: var(--success);
}

.bar-chart {
    display: grid;
    grid-template-columns: repeat(7, minmax(76px, 1fr));
    gap: 14px;
    align-items: end;
    min-height: 260px;
    overflow-x: auto;
}

.bar-item {
    display: grid;
    grid-template-rows: auto 180px auto auto;
    gap: 8px;
    min-width: 76px;
    text-align: center;
}

.bar-value {
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.bar-track {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 180px;
    border-radius: 8px;
    background: #eef2f6;
    overflow: hidden;
}

.bar-fill {
    width: 100%;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(180deg, #12b76a 0%, var(--primary) 100%);
}

.bar-item strong {
    font-size: 13px;
}

.bar-item span {
    color: var(--muted);
    font-size: 12px;
}

.progress-chart .bar-fill {
    background: linear-gradient(180deg, #f6c85f 0%, var(--accent) 100%);
}

.panel {
    padding: 20px;
}

.panel h2 {
    margin-top: 0;
    font-size: 20px;
}

.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.panel-head h2 {
    margin: 0;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--muted);
    font-size: 13px;
}

.list {
    display: grid;
    gap: 10px;
}

.list-item {
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.list-item span,
.list-item em {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.form-panel {
    max-width: 820px;
    padding: 24px;
}

.form-panel p {
    display: grid;
    gap: 8px;
    margin: 0 0 16px;
}

label {
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--text);
    font: inherit;
}

textarea {
    resize: vertical;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 22px;
}

.search-form {
    display: flex;
    max-width: 560px;
    gap: 10px;
    margin-bottom: 18px;
}

.messages {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.message {
    padding: 12px 14px;
    border-radius: 8px;
    background: #e8f1ff;
    color: #1849a9;
}

.message.success {
    background: #ecfdf3;
    color: var(--success);
}

.message.error {
    background: #fef3f2;
    color: var(--danger);
}

.message.info {
    background: #fff8e5;
    color: #93370d;
}

.detail-list {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 12px;
}

.detail-list dt {
    color: var(--muted);
}

.detail-list dd {
    margin: 0;
    font-weight: 700;
}

.message-preview {
    min-height: 320px;
    white-space: pre-wrap;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fafc;
    font-family: Consolas, Monaco, monospace;
    line-height: 1.5;
}

.errorlist {
    margin: 0 0 12px;
    padding: 10px 14px;
    border-radius: 8px;
    background: #fef3f2;
    color: var(--danger);
}

@media (max-width: 900px) {
    body {
        display: block;
    }

    .sidebar {
        min-height: auto;
    }

    .stats-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        display: grid;
    }

    .main {
        padding: 20px;
    }
}

.report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.panel {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.detail-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 12px;
    margin-top: 20px;
}

.message-preview {
    white-space: pre-wrap;
    line-height: 1.6;
    max-height: 350px;
    overflow: auto;
    background: #f8f9fa;
    padding: 16px;
    border-radius: 10px;
}

.chart-wrapper {
    margin-top: 20px;
}

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

#progressChart {
    width: 100% !important;
    height: 400px !important;
}

@media(max-width:768px) {

    .report-grid {
        grid-template-columns: 1fr;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }
}

.dashboard-chart-container {
    width: 100%;
    height: 400px;
    position: relative;
}

#dashboardChart {
    width: 100% !important;
    height: 100% !important;
}

/* ===== FORCE BUTTON COLORS ===== */

a.button.btn-edit {
    background: #2563eb !important;
    color: #ffffff !important;
    border: 1px solid #2563eb !important;
}

a.button.btn-edit:hover {
    background: #1d4ed8 !important;
}


a.button.btn-detail {
    background: #7c3aed !important;
    color: #ffffff !important;
    border: 1px solid #7c3aed !important;
}

a.button.btn-detail:hover {
    background: #6d28d9 !important;
}


a.button.btn-delete {
    background: #dc2626 !important;
    color: #ffffff !important;
    border: 1px solid #dc2626 !important;
}

a.button.btn-delete:hover {
    background: #b91c1c !important;
}

/* ===== STATUS BADGE ===== */

.status-badge {

    display: inline-block;

    padding: 6px 12px;

    border-radius: 999px;

    font-size: 12px;

    font-weight: 700;

    text-align: center;
}


/* TERKIRIM */

.status-success {

    background: #dcfce7;

    color: #166534;
}


/* PENDING */

.status-pending {

    background: #fef3c7;

    color: #92400e;
}


/* SIMULASI */

.status-simulated {

    background: #dbeafe;

    color: #1d4ed8;
}


/* GAGAL */

.status-failed {

    background: #fee2e2;

    color: #b91c1c;
}

/* RESPONSE TEXT */

.status-success-text {

    color: #166534;

    font-weight: 700;
}

.status-failed-text {

    color: #b91c1c;

    font-weight: 700;
}

/* ===== STATUS BADGE ===== */

.status-badge {

    display: inline-block;

    padding: 6px 12px;

    border-radius: 999px;

    font-size: 12px;

    font-weight: 700;

    text-align: center;
}


/* TERKIRIM */

.status-success {

    background: #dcfce7;

    color: #166534;
}


/* PENDING */

.status-pending {

    background: #fef3c7;

    color: #92400e;
}


/* SIMULASI */

.status-simulated {

    background: #dbeafe;

    color: #1d4ed8;
}


/* GAGAL */

.status-failed {

    background: #fee2e2;

    color: #b91c1c;
}


/* RESPONSE TEXT */

.status-success-text {

    color: #166534;

    font-weight: 700;
}

.status-pending-text {

    color: #92400e;

    font-weight: 700;
}

.status-simulated-text {

    color: #1d4ed8;

    font-weight: 700;
}

.status-failed-text {

    color: #b91c1c;

    font-weight: 700;
}

/* =========================
   MODERN DASHBOARD
========================= */

.dashboard-hero {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding: 32px;

    border-radius: 24px;

    background: linear-gradient(135deg,
            #0b7a75,
            #0f766e);

    color: white;

    margin-bottom: 28px;

    box-shadow: 0 15px 40px rgba(11, 122, 117, 0.25);
}

.hero-eyebrow {

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    opacity: 0.8;

    margin-bottom: 10px;
}

.dashboard-hero h1 {

    margin: 0;

    font-size: 38px;
}

.hero-description {

    margin-top: 12px;

    max-width: 650px;

    line-height: 1.7;

    opacity: 0.9;
}

.hero-button {

    background: white !important;

    color: #0b7a75 !important;

    border: none !important;
}


/* =========================
   MODERN STAT
========================= */

.modern-stats-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    margin-bottom: 28px;
}

.modern-stat-card {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 24px;

    border-radius: 20px;

    background: white;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    transition: 0.3s;
}

.modern-stat-card:hover {

    transform: translateY(-5px);
}

.stat-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background: #ecfdf5;

    font-size: 28px;
}

.modern-stat-card span {

    display: block;

    color: #64748b;

    margin-bottom: 6px;
}

.modern-stat-card strong {

    font-size: 32px;
}


/* =========================
   MODERN PANEL
========================= */

.modern-panel {

    background: white;

    border-radius: 24px;

    padding: 24px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.chart-modern-panel {

    margin-bottom: 28px;
}

.panel-subtitle {

    color: #64748b;

    margin-top: 8px;
}

.panel-badge {

    padding: 8px 14px;

    border-radius: 999px;

    background: #ecfdf5;

    color: #0f766e;

    font-size: 13px;

    font-weight: 700;
}


/* =========================
   MODERN LIST
========================= */

.modern-list-item {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 18px;

    border-radius: 18px;

    background: #f8fafc;

    margin-bottom: 14px;

    transition: 0.3s;
}

.modern-list-item:hover {

    background: #f1f5f9;

    transform: translateX(5px);
}

.modern-list-item strong {

    display: block;

    margin-bottom: 6px;
}

.modern-list-item span {

    color: #64748b;

    font-size: 14px;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width: 900px) {

    .dashboard-hero {

        flex-direction: column;

        align-items: flex-start;
    }

    .modern-stats-grid {

        grid-template-columns: 1fr;
    }
}

/* =========================
   MODERN BASE LAYOUT
========================= */

body {

    margin: 0;

    min-height: 100vh;

    display: flex;

    background: #f1f5f9;

    font-family: Arial, Helvetica, sans-serif;

    color: #0f172a;
}


/* =========================
   MODERN SIDEBAR
========================= */
.modern-sidebar {

    width: 270px;

    min-height: 100vh;

    background: linear-gradient(180deg,
            #0f172a,
            #111827);

    color: white;

    display: flex;

    flex-direction: column;

    padding: 24px 18px;

    position: sticky;

    top: 0;
}

.sidebar-top {

    margin-bottom: 30px;
}


/* BRAND */

.modern-brand {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 12px;
}

.modern-brand-logo {

    width: 54px;

    height: 54px;

    border-radius: 16px;

    background: linear-gradient(135deg,
            #14b8a6,
            #0f766e);

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

    font-size: 18px;

    box-shadow: 0 10px 20px rgba(20, 184, 166, 0.3);
}

.modern-brand strong {

    display: block;

    font-size: 18px;
}

.modern-brand small {

    color: #94a3b8;
}


/* =========================
   MODERN NAVIGATION
========================= */

.modern-nav {

    display: flex;

    flex-direction: column;

    gap: 10px;

}

.modern-nav a {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 14px 16px;

    border-radius: 16px;

    color: #e2e8f0;

    text-decoration: none;

    font-weight: 600;

    transition: all 0.3s ease;
}

.modern-nav a span {

    font-size: 18px;
}

.modern-nav a:hover {

    background: rgba(255, 255, 255, 0.08);

    transform: translateX(4px);

    color: white;
}


/* =========================
   MAIN CONTENT
========================= */

.modern-main {

    flex: 1;

    padding: 32px;
}


/* =========================
   SIDEBAR FOOTER
========================= */

.sidebar-footer {

    margin-top: auto;

    padding-top: 30px;

    text-align: center;

    color: #64748b;

    font-size: 13px;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width: 900px) {

    body {

        display: block;
    }

    .modern-sidebar {

        width: 100%;

        min-height: auto;

        position: relative;
    }

    .modern-main {

        padding: 20px;
    }
}

/* =========================
   SANTRI MODERN PAGE
========================= */

.modern-page-header {

    margin-bottom: 24px;
}

.page-description {

    color: #64748b;

    margin-top: 10px;
}


/* =========================
   SEARCH PANEL
========================= */

.search-panel {

    margin-bottom: 20px;
}

.modern-search-form {

    display: flex;

    gap: 12px;
}

.modern-search-form input {

    flex: 1;
}


/* =========================
   MODERN TABLE
========================= */

.modern-table thead th {

    background: #f8fafc;

    font-weight: 700;
}

.modern-table tbody tr {

    transition: 0.3s;
}

.modern-table tbody tr:hover {

    background: #f8fafc;
}


/* =========================
   STUDENT PROFILE
========================= */

.student-name {

    display: flex;

    align-items: center;

    gap: 12px;
}

.student-avatar {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: linear-gradient(135deg,
            #14b8a6,
            #0f766e);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;
}


/* =========================
   ACTION BUTTONS
========================= */

.modern-action-group {

    display: flex;

    gap: 10px;
}

.modern-action-btn {

    padding: 8px 14px;

    border-radius: 10px;

    color: white;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition: 0.3s;
}

.modern-action-btn:hover {

    transform: translateY(-2px);
}

.edit-btn {

    background: #2563eb;
}

.delete-btn {

    background: #dc2626;
}


/* =========================
   MODERN FORM
========================= */

.modern-form-wrapper {

    display: flex;

    justify-content: center;
}

.modern-form-panel {

    width: 100%;

    max-width: 850px;

    background: white;

    padding: 32px;

    border-radius: 24px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.modern-form-panel p {

    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-bottom: 18px;
}

.modern-form-panel label {

    font-weight: 700;
}

.modern-form-actions {

    display: flex;

    justify-content: flex-end;

    gap: 12px;

    margin-top: 28px;
}

/* =========================
   DELETE CARD
========================= */

.modern-delete-wrapper {

    display: flex;

    justify-content: center;

    margin-top: 30px;
}

.modern-delete-card {

    width: 100%;

    max-width: 520px;

    background: white;

    padding: 40px;

    border-radius: 24px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.delete-icon {

    width: 80px;

    height: 80px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #fee2e2;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 36px;
}

.modern-delete-card h2 {

    margin-bottom: 10px;
}

.modern-delete-card p {

    color: #64748b;

    margin-bottom: 30px;
}

/* =========================
   REPORT DETAIL
========================= */

.modern-report-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    align-items: start;

    margin-bottom: 20px;
}


/* =========================
   MESSAGE PREVIEW
========================= */

.message-preview {

    background: #f8fafc;

    border-radius: 18px;

    padding: 18px;

    line-height: 1.7;

    border: 1px solid #e2e8f0;
}


/* =========================
   CHART PANEL
========================= */

.chart-modern-panel {

    margin-top: 20px;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width: 900px) {

    .modern-report-grid {

        grid-template-columns: 1fr;
    }
}

/* =========================
   LOG DATE
========================= */

.log-date {

    display: flex;

    flex-direction: column;

    gap: 4px;
}

.log-date strong {

    font-size: 14px;
}

.log-date span {

    color: #64748b;

    font-size: 13px;
}


/* =========================
   RESPONSE BOX
========================= */

.response-box {

    display: flex;

    flex-direction: column;

    gap: 6px;

    padding: 14px 16px;

    border-radius: 14px;

    font-size: 13px;
}

.response-box strong {

    font-size: 14px;
}


/* SUCCESS */

.success-response {

    background: #ecfdf5;

    color: #166534;
}


/* PENDING */

.pending-response {

    background: #fef3c7;

    color: #92400e;
}


/* SIMULATED */

.simulated-response {

    background: #dbeafe;

    color: #1d4ed8;
}


/* FAILED */

.failed-response {

    background: #fee2e2;

    color: #b91c1c;
}

/* =========================
   LOGIN PAGE
========================= */

.login-body {

    margin: 0;

    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    background: linear-gradient(135deg,
            #0f172a,
            #0b7a75);
}

.login-wrapper {

    width: 100%;

    max-width: 420px;

    padding: 20px;
}

.login-card {

    background: white;

    padding: 40px;

    border-radius: 28px;

    text-align: center;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.login-logo {

    width: 80px;

    height: 80px;

    margin: 0 auto 20px;

    border-radius: 24px;

    background: linear-gradient(135deg,
            #14b8a6,
            #0f766e);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    font-weight: 700;
}

.login-card h1 {

    margin-bottom: 10px;
}

.login-card p {

    color: #64748b;

    margin-bottom: 30px;
}

.login-card form p {

    text-align: left;

    margin-bottom: 18px;
}

.login-button {

    width: 100%;

    margin-top: 10px;
}

/* =========================
   SIDEBAR USER
========================= */

.sidebar-user {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 18px;

    margin: 10px 0 24px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.06);
}

.sidebar-user-avatar {

    width: 52px;

    height: 52px;

    border-radius: 16px;

    background: linear-gradient(135deg,
            #14b8a6,
            #0f766e);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

    font-weight: 700;
}

.sidebar-user strong {

    display: block;

    color: white;

    margin-bottom: 4px;
}

.sidebar-user small {

    color: #cbd5e1;
}


/* =========================
   LOGOUT BUTTON
========================= */

.logout-button {

    width: 100%;

    padding: 14px;

    border: none;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.08);

    color: white;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.2s;
}

.logout-button:hover {

    background: rgba(255, 255, 255, 0.14);
}

/* =========================
   CONFIRM DELETE
========================= */

.confirm-panel {

    max-width: 620px;

    margin: auto;

    text-align: center;

    padding: 40px;
}

.confirm-icon {

    font-size: 64px;

    margin-bottom: 20px;
}

.confirm-panel h2 {

    margin-bottom: 12px;
}

.confirm-text {

    color: #64748b;

    margin-bottom: 24px;
}

.confirm-student-card {

    padding: 20px;

    border-radius: 18px;

    background: #f8fafc;

    margin-bottom: 24px;

    border: 1px solid #e2e8f0;
}

.confirm-student-card strong {

    display: block;

    font-size: 20px;

    margin-bottom: 8px;
}

.confirm-student-card span {

    color: #64748b;
}

.warning-text {

    color: #dc2626;

    font-weight: 600;

    margin-bottom: 30px;
}

.confirm-actions {

    display: flex;

    justify-content: center;

    gap: 16px;
}

.cancel-btn {

    background: #e2e8f0;

    color: #0f172a;
}

.cancel-btn:hover {

    background: #cbd5e1;
}

/* =========================
   LOGIN PAGE
========================= */

.login-body {

    margin: 0;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    font-family: sans-serif;

    background:
        radial-gradient(circle at top left,
            rgba(20, 184, 166, 0.35),
            transparent 35%),

        radial-gradient(circle at bottom right,
            rgba(59, 130, 246, 0.28),
            transparent 35%),

        linear-gradient(135deg,
            #0f172a,
            #111827,
            #1e293b);

    position: relative;
}


/* EFFECT BULAT BLUR */

.login-body::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    background: rgba(20, 184, 166, 0.18);

    border-radius: 50%;

    top: -120px;

    left: -120px;

    filter: blur(80px);
}

.login-body::after {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    background: rgba(59, 130, 246, 0.16);

    border-radius: 50%;

    bottom: -100px;

    right: -100px;

    filter: blur(80px);
}


/* =========================
   LOGIN CARD
========================= */

.login-wrapper {

    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 24px;

    position: relative;

    z-index: 2;
}

.login-card {

    width: 100%;

    max-width: 420px;

    padding: 42px;

    border-radius: 28px;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.1);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35);

    text-align: center;
}


/* =========================
   LOGO
========================= */

.login-logo {

    width: 88px;

    height: 88px;

    margin: 0 auto 20px;

    border-radius: 24px;

    background: linear-gradient(135deg,
            #14b8a6,
            #0f766e);

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 28px;

    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(20, 184, 166, 0.35);
}


/* =========================
   TEXT
========================= */

.login-card h1 {

    margin-bottom: 10px;

    color: white;

    font-size: 32px;
}

.login-card p {

    margin-bottom: 28px;

    color: #cbd5e1;
}


/* =========================
   INPUT
========================= */

.login-card input {

    width: 100%;

    padding: 14px 16px;

    margin-top: 8px;

    margin-bottom: 18px;

    border-radius: 14px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    background: rgba(255, 255, 255, 0.06);

    color: white;

    outline: none;

    font-size: 15px;
}

.login-card input:focus {

    border-color: #14b8a6;

    box-shadow:
        0 0 0 4px rgba(20, 184, 166, 0.15);
}

/* =========================
   BUTTON
========================= */

.login-button {

    width: 100%;

    padding: 14px;

    border-radius: 14px;

    border: none;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    background: linear-gradient(135deg,
            #14b8a6,
            #0f766e);

    color: white;

    transition: 0.2s;
}

.login-button:hover {

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(20, 184, 166, 0.35);
}