body {
    background-color: rgb(228, 233, 247);
}

.guest {
    color: rgb(24, 24, 24);
}

.img-card-container {
    border-radius: 7px;
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.steps-column {
    height: 100vh;
    position: fixed;
    right: 0;
}
.steps-column > .main-card {
    height: 65%;
    padding-right: 3px;
}
.steps-column > .main-card > div {
    overflow: auto;
}

.guest .main-card {
    box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.75);
}

.register-container {
    width: 70%;
    margin: auto;
}

.register-container .serial-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-1);
    height: 40px;
    width: 80%;
    margin: auto;
    border-radius: 1000px;
    overflow: hidden;
    border: 1px solid var(--green-2);
    transition: all 0.1s ease-in;
}
.register-container .serial-container span {
    display: inline-block;
    width: 10%;
    text-align: center;
    color: white;
    padding-left: 10px;
}
.register-container .serial-container input#serial {
    flex: 1;
    height: 100%;
    outline: none;
    border: none;
    padding-left: 20px;
    font-size: 14px;
    border-radius: 100px;
}
.register-container .serial-container:focus-within {
    box-shadow: 0px 0px 15px 1px rgba(20, 89, 45, 0.75) !important;
    -webkit-box-shadow: 0px 0px 15px 1px rgba(20, 89, 45, 0.75) !important;
    -moz-box-shadow: 0px 0px 15px 1px rgba(20, 89, 45, 0.75) !important;
    border-color: var(--green-1);
}
.register-container .serial-container:hover {
    border-color: var(--green-1);
    box-shadow: 0px 0px 8px 1px rgba(20, 89, 45, 0.5);
    -webkit-box-shadow: 0px 0px 8px 1px rgba(20, 89, 45, 0.5);
    -moz-box-shadow: 0px 0px 8px 1px rgba(20, 89, 45, 0.5);
}

.submit-btn-container {
    width: 50%;
    margin: auto;
}
.submit-btn-container button {
    padding-block: 10px;
}

.number-circle {
    display: inline-grid;
    height: 30px;
    width: 30px;
    place-items: center;
    background: var(--green-2);
    text-align: center;
    font-weight: bold;
    color: white;
    border-radius: 100%;
    margin-right: 10px;
}

a#direction {
    display: none;
}

.register-column > .main-card {
    position: relative;
    overflow: hidden;
}
.register-column > .main-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: 27%;
    width: 50%;
    height: 200%;
    background-color: #f3c52c;
    transform: rotate(18deg);
    z-index: 0;
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}
.register-column > .main-card .register-container {
    z-index: 1;
}
.register-header {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    -webkit-text-stroke: 2px rgba(0, 0, 0, 0.7);
    color: var(--green-2);
    text-transform: uppercase;
}

/* HEIGHT DEPENDENT */

@media (max-height: 578px) {
    .steps-column > .main-card {
        height: 55%;
    }
}
@media (max-height: 463px) {
    .steps-column > .main-card {
        height: 48%;
    }
}
@media (max-height: 380px) {
    body {
        padding: 0 !important;
    }
    #header {
        display: none;
    }
}

/* WIDTH DEPENDENT */
@media (max-width: 992px) {
    .steps-column {
        position: static;
        height: auto;
        width: 100%;
    }
    a#direction {
        display: inline;
        font-weight: bold;
        text-decoration: underline;
    }
    .register-column {
        width: 100%;
    }
}
@media (max-width: 420px) {
    .register-container .serial-container span {
        display: none;
    }
    .register-container #serial {
        padding: 0 !important;
        text-align: center;
    }
}
