body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    background-image: url("../images/bg-monitor2.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* backdrop-filter: brightness(0.2); */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
}

/* header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url("../images/bg-top-monitor.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    padding: 16px 16px 32px 32px;
    border-radius: 0px 0px 20px 20px;
}

header img {
    width: 320px;
    height: max-content;
}

header.time {
    width: 600px;
}

header .date {
    width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    font-size: 1.5rem;
    font-weight: 600;
}

.time .time-digit {
    margin-left: 20px;
    font-size: 5rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
}

header span {
    color: #000;
}

/* main */
.container {
    margin: 0;
    height: 40vh;
    padding: 0 32px;
    /* background-color: #fff; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.antrian {
    margin: 0;
    height: 28vh;
    padding: 0 32px;
    /* background-color: #fff; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pendaftaran {
    width: 32%;
    height: 100%;
    /* background-color: #fff; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
}

.video {
    position: relative;
    height: 100%;
    width: 54%;
    overflow: hidden;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 96%;
    height: 96%;
    border-radius: 16px;
    border: solid 5px #378e3c;
}
.pendaftaran-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pendaftaran-header .kotak-bg1 {
    height: 60px;
    width: 90%;
    background-color: #8c0031;
    border-radius: 16px;
    margin-bottom: -52px;
}

.pendaftaran-header .kotak-bg2 {
    height: 60px;
    width: 95%;
    background-color: #a6003b;
    border-radius: 16px;
    margin-bottom: -52px;
}
.pendaftaran-header h2 {
    width: 100%;
    margin: 0;
    padding: 20px 0;
    background-color: #f60057;
    color: #fff;
    text-align: center;
    border-radius: 16px;
}

.no-antrian-pendaftaran {
    width: 100%;
    height: 28vh;
    background-color: #fff;
    border-radius: 16px;
    font-weight: 700;
    font-size: 7rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.antrian-col {
    background-color: #378e3c;
    width: 24%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.antrian-col h2 {
    text-align: center;
    background-color: #1a5e1f;
    color: #ffe182;
    padding: 20px 0;
    margin: 0;
}

.antrian-col span {
    font-weight: 700;
    font-size: 6rem;
    color: #fff;
    text-align: center;
}

.footer {
    margin: 0;
    height: 5vh;
    padding: 16px 32px;
    background-color: #fff;
    overflow: hidden;
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
}

.footer .footer-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

.running-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: -10px;
}

.running-content span {
    font-size: 1.5rem;
    font-weight: 500;
}

.running-text {
    display: inline-block;
    white-space: nowrap;
    animation: runningText 60s linear infinite;
}
@keyframes runningText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
