header {
    display: none;
}

footer {
    display: none;
}

main {
    margin-top: 0px;
}

    main.wrap {
        margin-top: 0;
        width: 100%;
        min-width: 1200px;
        padding: 0;
    }

.data-input-wrap {
    padding: 16px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 10;
}

.icon-arrow {
    width: 30px;
    height: 30px;
}

.title-img {
    width: 94px;
    height: 34px;
}

.input-area {
    padding: 40px 0;
}

    .input-area input {
        border: 0;
        border-bottom: 1px solid #eeeeee;
        padding: 8px 0;
        margin-bottom: 10px;
    }

        .input-area input:focus-visible {
            outline: none;
            border-bottom: 1px solid #63C856;
        }

        .input-area input::placeholder {
            color: #c4c4c4
        }

    .input-area .btn {
        color: #63C856;
        position: absolute;
        top: 40px;
        right: 0;
        background: #F8F8F8;
        border-radius: 10px;
    }

        .input-area .btn:disabled {
            color: #C4C4C4;
        }

    .input-area .error-input {
        border-bottom: 1px solid #E70011;
    }

.button {
    display: block;
    padding: 10px;
    text-align: center;
    background-color: #63C856;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
}

    .button:hover {
        background-color: #4BAF3C;
        color: #fff;
    }

.register-process {
    margin-top: -20px;
    margin-bottom: 54px;
    overflow: hidden;
}


    .register-process span {
        position: relative;
        margin: 0 auto 8px auto;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 40px;
        width: 40px;
        height: 40px;
        background-color: #C4C4C4;
        color: #fff;
    }

        .register-process span.through-line::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 40px;
            width: 178px;
            height: 1px;
            background-color: #cccccc;
        }

        .register-process span.active {
            background-color: #FFCC55;
        }

.date-select select {
    border: 0;
    border-bottom: 1px solid #EBEBEB;
    padding: 10px 0;
    color: #C4C4C4;
    background-color: transparent;
}

.year {
    width: 100%;
}

.month {
    width: 48%
}

.day {
    width: 48%
}

.wrong-message {
    color: #E70011;
}

    .wrong-message img {
        width: 15px;
        height: 15px;
    }

.privacy-terms {
    color: #63C856;
    border-bottom: 1px solid #63C856;
}

.registered-img {
    width: 150px;
    height: 150px;
    margin-top: 66px;
    margin-bottom: 16px;
}

.registered-title {
    font-size: 18px;
}

.registered-btns {
    margin-top: 55px;
}

.back-btn {
    display: block;
    padding: 10px;
    text-align: center;
    border-radius: 50px;
    color: #63C856;
    font-size: 14px;
}

.error-text {
    margin-top: 8px;
    color: #E70011;
    font-size: 12px;
}

.icon-wrong {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    margin-top: -4px;
}

.valid-error {
    padding: 10px;
    background-color: rgba(215,88,88,0.3);
    color: #E70011;
    border-radius: 8px;
}

.icon-warn {
    width: 20px;
    height: 20px;
    margin-top: -5px;
    margin-right: 8.5px;
}

/*checkbox customer*/

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .checkbox-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 16px;
    width: 16px;
    border: 0.5px solid #C4C4C4;
    border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
    background-color: #eee;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
    background-color: #63C856;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*checkbox customer*/
.agree-terms-bg {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.25);
    z-index: 11;
}

.agree-terms-modal {
    background-color: #fff;
    width: 250px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding-top: 34px;
    border-radius: 10px;
}

.agree-terms-btn {
    display: block;
    border-top: 1px solid #CCCCCC;
    padding: 15px 0;
    color: #63C856;
    text-align: center;
}

.error-message {
    margin-top: 8px;
    color: #E70011;
    font-size: 12px;
}

select.error, input.error {
    border-color: #E70011;
}

.input-phone {
    padding-top: 16px;
    border-top: 1px solid #EBEBEB;
}

.success-message {
    position: fixed;
    width: 50%;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    padding: 24px 0;
    text-align: center;
    color: #fff;
    background-color: rgba(101,101,101,0.8);
    border-radius: 10px;
    font-size: 18px;
}

.privacy-modal {
    background-color: #fff;
    width: 600px;
    height: 700px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 10px;
    overflow-y: scroll;
    -ms-overflow-style: none;
    overflow: -moz-hidden-unscrollable;
    padding-bottom: 50px;
}

    .privacy-modal::-webkit-scrollbar {
        display: none;
    }

.privacy-title {
    position: relative;
    font-size: 18px;
    text-align: center;
    padding: 20px;
    margin-bottom: 0;
    border-bottom: 1px solid #CCCCCC;
}

.close-btn {
    position: absolute;
    right: 25px;
}

.pw-switch {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (min-width: 576px) {
    header {
        display: block;
    }

    footer {
        display: block;
    }

    h2 {
        font-size: 24px;
    }

    main .wrap {
        width: 100%;
        min-width: 1200px;
    }

    .data-input-bg {
        background: #F8F8F8;
        padding: 80px 0;
    }

    .data-input-wrap {
        width: 600px;
        margin: 0 auto;
        padding: 76px 50px;
    }

    .input-verification-code {
        border-top: 1px solid #EBEBEB;
    }

    .input-area {
        /*border-top: 1px solid #EBEBEB;*/
    }

    .date-select select {
        width: 155px;
    }

    .registered-img {
        margin-top: 0;
    }

    .registered-btns {
        margin-top: 44px;
    }

    .button {
        font-size: 18px;
    }

    .back-btn {
        font-size: 16px;
        padding: 20px;
    }
}
