* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    color: #fff;
    background: #083d84;
}

a {
    text-decoration: none;
    color: inherit;
}

.bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, #2f89ff 0%, transparent 32%),
        radial-gradient(circle at bottom left, #032b63 0%, transparent 35%),
        linear-gradient(135deg, #083d84, #0b57b2);
    z-index: -2;
}

.bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
}

.bg::after {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    right: -260px;
    top: -260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(150px);
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 28px 40px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.brand h1 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.brand p {
    margin-top: 8px;
    color: #dce9ff;
    font-size: 18px;
}

.header-right {
    text-align: right;
}

.online {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    backdrop-filter: blur(15px);
    margin-bottom: 15px;
}

.online span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #00e676;
    box-shadow: 0 0 12px #00e676;
}

#clock {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

#date {
    margin-top: 8px;
    color: #dce9ff;
    font-size: 18px;
}

/*==================================
SUMMARY
==================================*/

.summary {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.summary-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    padding: 16px 20px;
    transition: 0.25s;
}

.summary-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

.summary-card small {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.summary-card h2 {
    font-size: 25px;
    font-weight: 800;
    line-height: 1;
}

.report-summary {
    width: 100%;

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

/*==================================
MENU GRID
==================================*/

main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

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

.card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s ease;
    color: #fff;
    min-height: 165px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.35s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.35);
}

.card:hover .icon {
    transform: scale(1.08);
}

.icon {
    transition: 0.25s;
}

.card:hover::before {
    transform: scale(1.2);
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.05);
}

.icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
}

.card h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 8px;
}

.card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

/*==================================
CARD COLORS
==================================*/

.blue {
    background: linear-gradient(135deg, #0b57b2, #083d84);
}

.green {
    background: linear-gradient(135deg, #20b76d, #11824a);
}

.yellow {
    background: linear-gradient(135deg, #f2b400, #d79200);
}

.orange {
    background: linear-gradient(135deg, #ff7a28, #e45a00);
}

.purple {
    background: linear-gradient(135deg, #8b3dff, #5b2db7);
}

.red {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}

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

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 28px;
    height: 68px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(20px);
}

footer div {
    font-size: 16px;
    color: #dce9ff;
}

footer strong {
    color: #fff;
    margin-left: 8px;
    font-size: 18px;
}

footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 22px;
    border-radius: 12px;
    background: #d6a21f;
    color: #083d84;
    font-weight: 700;
    transition: 0.25s;
}

footer a:hover {
    background: #f3bf35;
    transform: translateY(-2px);
}

/*==================================
CARD BORDER COLOR
==================================*/

.blue {
    border-left: 6px solid #3cb5ff;
}

.green {
    border-left: 6px solid #00e676;
}

.yellow {
    border-left: 6px solid #ffd54f;
}

.orange {
    border-left: 6px solid #ff8a50;
}

.purple {
    border-left: 6px solid #c77dff;
}

.red {
    border-left: 6px solid #ff6b6b;
}

/*==================================
ANIMATION
==================================*/

.card,
.summary-card,
footer {
    animation: fadeUp 0.45s ease;
}

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

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

@media (max-width: 1200px) {
    body {
        overflow: auto;
    }

    .container {
        height: auto;
        min-height: 100vh;
        grid-template-rows: auto auto auto auto;
    }

    .summary {
        grid-template-columns: repeat(2, 1fr);
    }

    main {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
}

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

@media (max-width: 768px) {
    body {
        overflow: auto;
    }

    .container {
        padding: 20px;
        height: auto;
        gap: 20px;
        grid-template-rows: auto auto auto auto;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .header-right {
        width: 100%;
        text-align: left;
    }

    .brand img {
        width: 58px;
        height: 58px;
    }

    .brand h1 {
        font-size: 32px;
    }

    .brand p {
        font-size: 15px;
    }

    #clock {
        font-size: 32px;
    }

    #date {
        font-size: 15px;
    }

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

    main {
        grid-template-columns: 1fr;
    }

    .card {
        min-height: 160px;
    }

    .card h2 {
        font-size: 24px;
    }

    .icon {
        width: 52px;
        height: 52px;
    }

    footer {
        padding: 20px;
        flex-direction: column;
        gap: 18px;
    }
}

/*==================================
LARGE MONITOR
==================================*/

@media (min-width: 1600px) {
    .container {
        max-width: 1800px;
        margin: auto;
    }

    .brand h1 {
        font-size: 56px;
    }

    .card {
        min-height: 210px;
    }

    .card h2 {
        font-size: 34px;
    }
}

.checkin-page {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 30px;
    height: 100%;
}

.scan-card,
.result-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    backdrop-filter: blur(18px);
    padding: 35px;
}

.scan-card h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

.scan-card p {
    color: #dce9ff;
    margin-bottom: 25px;
}

#qr_token {
    width: 100%;
    height: 65px;
    border: none;
    border-radius: 14px;
    padding: 0 20px;
    font-size: 22px;
    outline: none;
    background: #fff;
}

.result-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.result-card h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.result-card p {
    font-size: 20px;
    color: #dce9ff;
}

/*==================================
CHECK IN
==================================*/

.checkin-wrapper {
    flex: 1;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 25px;
}

.scan-panel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    backdrop-filter: blur(18px);
    padding: 35px;
    display: flex;
    flex-direction: column;
}

.scan-header h1 {
    font-size: 36px;
    margin-bottom: 8px;
}

.scan-header p {
    color: #dbe8ff;
    margin-bottom: 30px;
}

#qr_token {
    width: 100%;
    height: 68px;
    border: none;
    outline: none;
    border-radius: 16px;
    font-size: 22px;
    padding: 0 22px;
    background: #fff;
    color: #222;
}

.scan-info {
    margin-top: 20px;
    background: #0f8d47;
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}

.result-panel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    backdrop-filter: blur(18px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
}

.result-icon {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.result-svg {
    width: 70px;
    height: 70px;
}

.result-panel h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.result-panel p {
    font-size: 15px;
    color: #dbe8ff;
}

@media (max-width: 900px) {
    .checkin-wrapper {
        grid-template-columns: 1fr;
    }
}

.page-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.camera-button {
    width: 100%;
    height: 70px;
    border: none;
    border-radius: 16px;
    background: #22c55e;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.camera-button:hover {
    background: #16a34a;
}

.camera-icon {
    width: 30px;
    height: 30px;
}

.divider {
    text-align: center;
    margin: 25px 0;
    color: #dce9ff;
}

#qr_token {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 14px;
    padding: 0 20px;
    font-size: 20px;
    margin-bottom: 15px;
}

.manual-button {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 14px;
    background: #2563eb;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

.manual-button:hover {
    background: #1d4ed8;
}

#reader {
    width: 100%;
    max-width: 420px;
    margin: auto;
}

#reader {
    display: none;
    margin: auto;
    width: 420px;
}

#memberResult {
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.success {
    color: #fff;
}

.success h2 {
    color: #22c55e;
    font-size: 46px;
    margin-bottom: 20px;
}

.success h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.success h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #dbe8ff;
}

.success p {
    font-size: 20px;
}

.failed {
    color: #fff;
}

.failed h2 {
    color: #ef4444;
    font-size: 42px;
    margin-bottom: 15px;
}

.failed p {
    font-size: 20px;
}

.page-top {
    margin-bottom: 20px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    opacity: 0.9;
    transition: 0.2s;
}

.back-link:hover {
    opacity: 1;
    transform: translateX(-3px);
}

.back-icon {
    width: 20px;
    height: 20px;
}

#dailyForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#dailyForm input,
#dailyForm select {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 14px;
    padding: 0 18px;
    font-size: 18px;
    outline: none;
}

/* ===========================
   MEMBER CREATE
=========================== */

#memberForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 25px;
}

#memberForm input,
#memberForm select,
#memberForm textarea {
    width: 100%;
    border: none;
    outline: none;
    border-radius: 14px;
    background: #ffffff;
    color: #222;
    font-size: 17px;
    padding: 0 18px;
    box-sizing: border-box;
}

#memberForm input,
#memberForm select {
    height: 56px;
}

#memberForm textarea {
    height: 90px;
    padding: 15px 18px;
    resize: none;
}

#memberForm input:focus,
#memberForm select:focus,
#memberForm textarea:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.35);
}

#pemdaArea {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.total-box {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.total-box small {
    display: block;
    color: #dbeafe;
    font-size: 14px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.total-box h2 {
    margin: 0;
    color: #fff;
    font-size: 34px;
    font-weight: 800;
}

.camera-button {
    margin-top: 10px;
}

/* .result-panel {
    display: flex;
    justify-content: center;
    align-items: center;
} */

/*==================================
MEMBER CREATE
==================================*/

.member-page {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.member-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(18px);
    padding: 35px;
}

.member-header {
    margin-bottom: 30px;
    text-align: center;
}

.member-header h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.member-header p {
    color: #dce9ff;
    font-size: 17px;
}

#memberForm {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

#memberForm label {
    font-size: 15px;
    font-weight: 600;
    color: #dce9ff;
    margin-bottom: -10px;
}

#memberForm input,
#memberForm select,
#memberForm textarea {
    width: 100%;
    border: none;
    outline: none;
    border-radius: 14px;
    background: #fff;
    color: #222;
    font-size: 17px;
    padding: 0 18px;
}

#memberForm input,
#memberForm select {
    height: 58px;
}

#memberForm textarea {
    height: 100px;
    resize: none;
    padding: 15px 18px;
}

#memberForm input:focus,
#memberForm select:focus,
#memberForm textarea:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.35);
}

.section-title {
    margin-top: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #dce9ff;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.total-box {
    margin-top: 5px;
    background: linear-gradient(135deg, #2563eb, #0b57b2);
    border-radius: 18px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.total-box small {
    display: block;
    font-size: 14px;
    color: #dbeafe;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.total-box h2 {
    margin: 0;
    font-size: 38px;
    font-weight: 800;
    color: #fff;
}

#memberForm button {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .member-card {
        padding: 22px;
    }

    .member-header h1 {
        font-size: 28px;
    }

    .member-header p {
        font-size: 15px;
    }

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

    #memberForm input,
    #memberForm select {
        height: 54px;
        font-size: 16px;
    }

    #memberForm textarea {
        height: 90px;
        font-size: 16px;
    }

    .total-box h2 {
        font-size: 30px;
    }
}

/*==================================
RENEWAL
==================================*/

.renewal-member {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.renewal-top {
    display: grid;
    grid-template-columns: 90px 1fr 240px;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}

.renewal-photo {
    width: 90px;
    height: 90px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
}

.renewal-photo svg {
    width: 58px;
    color: #fff;
}

.renewal-name h2 {
    margin: 0;
    font-size: 34px;
}

.renewal-name h4 {
    margin-top: 6px;
    color: #dbeafe;
    font-size: 22px;
}

.renewal-date {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 24px;
}

.renewal-date small {
    color: #dbeafe;
}

.renewal-date h3 {
    margin-top: 10px;
    color: #22c55e;
    font-size: 28px;
}

.renewal-grid {
    display: grid;
    grid-template-columns: 300px 220px 220px;
    gap: 18px;
    margin: 22px 0;
}

.renewal-grid2 {
    display: grid;
    grid-template-columns: 300px 220px 1fr;
    gap: 18px;
    margin-bottom: 20px;
}

.renewal-grid input,
.renewal-grid2 input,
.renewal-grid2 select {
    width: 100%;
    height: 56px;
}

.price-box {
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.price-box h2 {
    font-size: 28px;
}

.price-box h3 {
    font-size: 24px;
}

#renewalForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#renewalForm label {
    font-size: 15px;
    color: #dbeafe;
    margin-bottom: -8px;
}

#renewalForm input,
#renewalForm select {
    width: 100%;
    height: 58px;
    border: none;
    outline: none;
    border-radius: 14px;
    background: #fff;
    color: #222;
    padding: 0 18px;
    font-size: 18px;
}

#renewalForm input:focus,
#renewalForm select:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.35);
}

#renewalForm button {
    margin-top: 10px;
}

.renewal-member .total-box {
    margin: 10px 0;
}

/* PANEL KIRI RENEWAL */

#searchForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#searchForm input {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 14px;
    padding: 0 20px;
    font-size: 20px;
    outline: none;
    background: #fff;
    color: #222;
}

#searchForm input:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.35);
}

#searchForm button {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 14px;
    background: #2563eb;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

#searchForm button:hover {
    background: #1d4ed8;
}

.price-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 16px 20px;
    text-align: center;
}

.price-box small {
    display: block;
    color: #dbeafe;
    margin-bottom: 8px;
}

.price-box h3 {
    margin: 0;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

#renewalSuccess {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

#renewalSuccess h2 {
    font-size: 38px;
    margin: 20px 0;
}

#renewalSuccess h3 {
    font-size: 30px;
    color: #22c55e;
    margin: 10px 0;
}

#renewalSuccess p {
    color: #dbeafe;
    margin: 8px 0;
}

#renewalSuccess .camera-button {
    margin-top: 30px;
    width: 320px;
}

/*==================================
ATTENDANCE
==================================*/

.attendance-toolbar {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 18px;

    color: #fff;
}

.attendance-toolbar strong {
    font-size: 26px;
}

.attendance-count {
    font-size: 18px;
}

.attendance-table-wrap {
    width: 100%;

    height: calc(100% - 60px);

    overflow: auto;

    border-radius: 16px;

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

.attendance-table {
    width: 100%;

    border-collapse: collapse;

    color: #fff;
}

.attendance-table thead {
    position: sticky;

    top: 0;

    background: #234f97;

    z-index: 5;
}

.attendance-table th {
    padding: 18px;

    text-align: left;

    font-size: 15px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.attendance-table td {
    padding: 16px 18px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.attendance-table tbody tr {
    transition: 0.2s;
}

.attendance-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.attendance-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}
.attendance-table th:first-child,
.attendance-table td:first-child {
    text-align: center;
}

.attendance-toolbar {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 18px;
}

.attendance-left {
    display: flex;

    gap: 20px;

    align-items: center;

    color: #fff;
}

.attendance-right {
    display: flex;

    gap: 12px;
}

.attendance-right input {
    width: 220px;

    height: 42px;

    border: none;

    border-radius: 10px;

    padding: 0 14px;
}

.attendance-right select {
    width: 90px;

    height: 42px;

    border: none;

    border-radius: 10px;
}

.attendance-footer {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 16px;

    color: #fff;
}

.attendance-footer button {
    height: 42px;

    padding: 0 18px;

    border: none;

    border-radius: 10px;

    background: #2563eb;

    color: #fff;

    cursor: pointer;
}

/*==================================
ATTENDANCE FILTER
==================================*/

#filterForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

#filterForm label {
    color: #dbeafe;
    font-size: 15px;
    margin-bottom: -6px;
}

#filterForm input,
#filterForm select {
    width: 100%;
    height: 58px;

    border: none;
    outline: none;

    border-radius: 14px;

    background: #fff;
    color: #222;

    padding: 0 18px;

    font-size: 17px;

    transition: 0.2s;
}

#filterForm input:focus,
#filterForm select:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.35);
}

#filterForm button {
    margin-top: 10px;
}

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

#reportForm {
    display: flex;

    flex-direction: column;

    gap: 18px;

    margin-top: 28px;
}

#reportForm .form-group {
    display: flex;

    flex-direction: column;
}

#reportForm label {
    color: #dbeafe;

    font-size: 15px;

    margin-bottom: 8px;
}

#reportForm input,
#reportForm select {
    width: 100%;

    height: 58px;

    border: none;

    border-radius: 14px;

    background: #fff;

    color: #222;

    padding: 0 18px;

    font-size: 17px;

    outline: none;
}

#reportForm input:focus,
#reportForm select:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.35);
}

#reportForm button {
    margin-top: 8px;
}

.report-summary {
    display: grid;

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

    gap: 18px;

    margin-bottom: 25px;
}

.report-toolbar {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 18px;

    color: #fff;
}

.report-toolbar strong {
    font-size: 22px;
}

.report-toolbar input {
    width: 260px;

    height: 46px;

    border: none;

    border-radius: 12px;

    padding: 0 16px;

    outline: none;
}

.attendance-footer {
    display: flex;

    justify-content: flex-end;

    gap: 12px;

    margin-top: 18px;
}

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

.login-page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    width: 460px;

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

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

    backdrop-filter: blur(20px);

    border-radius: 28px;

    padding: 45px;

    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.login-logo {
    text-align: center;

    margin-bottom: 35px;
}

.login-logo img {
    width: 90px;

    margin-bottom: 15px;
}

.login-logo h1 {
    font-size: 34px;

    font-weight: 800;
}

.login-logo p {
    color: #dbeafe;

    margin-top: 8px;
}

.login-form {
    display: flex;

    flex-direction: column;

    gap: 18px;
}

.login-form label {
    color: #dbeafe;

    font-weight: 600;
}

.login-form input {
    width: 100%;

    height: 60px;

    border: none;

    outline: none;

    border-radius: 14px;

    padding: 0 18px;

    font-size: 18px;

    color: #222;
}

.login-form input:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.35);
}

.login-clock {
    margin-top: 30px;

    text-align: center;
}

.login-clock h2 {
    font-size: 42px;

    font-weight: 800;
}

.login-clock p {
    color: #dbeafe;

    margin-top: 8px;
}

footer form {
    margin: 0;
}

.logout-button {
    height: 46px;

    padding: 0 22px;

    border: none;

    border-radius: 12px;

    background: #d6a21f;

    color: #083d84;

    font-weight: 700;

    cursor: pointer;

    transition: 0.2s;
}

.logout-button:hover {
    background: #f3bf35;

    transform: translateY(-2px);
}
