* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(
        135deg,
        #0d4778 0%,
        #075b91 55%,
        #f28c28 100%
    );
    color: white;
    min-height: 100vh;
}


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

.logo-area {
    position: absolute;
    top: 22px;
    left: 45px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.logo-circle {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    max-width: 70px;
    max-height: 70px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
}

.logo-circle img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 8px;
    margin: 0;
    box-sizing: border-box;
    position: static;
}

.logo-text {
    font-size: 11px;

    line-height: 1.4;

    font-weight: bold;

    letter-spacing: 0.3px;
}

.main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.title {
    width: 290px;
    text-align: right;
}

.title-main {
    font-size: 38px;
    font-weight: 300;
    letter-spacing: 1px;
}

.title-sub {
    font-size: 18px;
    margin-top: 5px;
    letter-spacing: 2px;
    opacity: .9;
}

.form-area {
    width: 285px;
}


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

.input-group {
    width: 100%;
    height: 38px;
    border: 1px solid rgba(255,255,255,.8);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.05);
}

.icon {
    width: 36px;
    text-align: center;
    font-size: 14px;
}

.input-group input,
.input-group select {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: white;
    font-size: 14px;
    padding: 0 10px;
}

.input-group input::placeholder {
    color: rgba(255,255,255,.75);
}

.input-group select {
    cursor: pointer;
}

.input-group select option {
    color: #333;
    background: white;
}


/* =====================================================
   CAPTCHA
   ===================================================== */

.captcha {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 15px;
}

.captcha span {
    min-width: 75px;
}

.captcha input {
    width: 100%;
    height: 36px;
    border: 1px solid rgba(255,255,255,.8);
    outline: none;
    background: transparent;
    color: white;
    padding: 0 10px;
}

.captcha input::placeholder {
    color: rgba(255,255,255,.7);
}

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

button {
    width: 100%;
    height: 38px;
    border: 1px solid white;
    background: rgba(255,255,255,.12);
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: .2s;
}

button:hover {
    background: white;
    color: #075b91;
}

/* =====================================================
   RESULT PAGE
   ===================================================== */

.result-page {
    width: 100%;
    min-height: 100vh;
    padding: 130px 20px 100px;
    display: flex;
    justify-content: center;
}

.result-box {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.result-title {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 1px;
}

.result-subtitle {
    font-size: 16px;
    margin-top: 4px;
    letter-spacing: 2px;
}

.branch-result {
    margin-top: 12px;
    font-size: 13px;
    opacity: .85;
}

/* =====================================================
   DATA
   ===================================================== */

.data {
    margin-top: 25px;
    text-align: left;
}

.data-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.25);
    font-size: 13px;
}

.data-row span {
    opacity: .75;
}

.data-row strong {
    text-align: right;
}

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

.status-box {
    margin-top: 25px;
    padding: 17px;
    border: 1px solid rgba(255,255,255,.7);
    text-align: center;
}

.status-label {
    font-size: 11px;
    opacity: .8;
    margin-bottom: 7px;
}

.status-value {
    font-size: 20px;
    font-weight: bold;
}


/* =====================================================
   TIMELINE
   ===================================================== */

.timeline {
    margin-top: 30px;
    text-align: left;
}

.timeline-title {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.timeline-item {
    position: relative;
    min-height: 55px;
    padding-left: 30px;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 13px;
    bottom: 0;
    width: 1px;
    background: rgba(255,255,255,.45);
}

.timeline-dot {
    position: absolute;
    left: 1px;
    top: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
}

.timeline-action {
    font-size: 14px;
    font-weight: bold;
}

.timeline-date {
    margin-top: 5px;
    font-size: 11px;
    opacity: .75;
}


/* =====================================================
   INFO / ERROR PAGE
   ===================================================== */

.info-page {
    min-height: 100vh;
    position: relative;
}

.info-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 550px;
    text-align: center;
}

.info-center h1 {
    margin: 0 0 15px;
    font-size: 28px;
    font-weight: 400;
}

.info-center p {
    margin: 0 auto;
    max-width: 550px;
    font-size: 14px;
    line-height: 1.7;
    opacity: .9;
}

.info-button {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 28px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-size: 13px;
    transition: .2s;
}

.info-button:hover {
    background: white;
    color: #075b91;
}


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

.footer,
.info-footer {
    position: fixed;
    bottom: 25px;
    width: 100%;
    text-align: center;
    font-size: 11px;
    line-height: 1.6;
    opacity: .75;
}


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

@media (max-width: 700px) {

    body {
        overflow-x: hidden;
    }

    .logo-area {
        left: 25px;
        top: 20px;
    }

    .main {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        min-height: 100vh;
        padding: 120px 25px 100px;
        display: block;
    }

    .title {
        width: 100%;
        text-align: center;
        margin-bottom: 35px;
    }

    .title-main {
        font-size: 32px;
    }

    .title-sub {
        font-size: 15px;
    }

    .form-area {
        width: 100%;
        max-width: 360px;
        margin: auto;
    }

    .result-page {
        padding-top: 120px;
    }

    .result-box {
        max-width: 360px;
    }

    .data-row {
        display: block;
    }

    .data-row strong {
        display: block;
        text-align: left;
        margin-top: 4px;
    }

    .info-center {
        width: calc(100% - 40px);
    }

    .info-center h1 {
        font-size: 24px;
    }

    .footer,
    .info-footer {
        position: relative;
        bottom: auto;
        padding: 20px;
        margin-top: -80px;
    }
}
