.customer-wrap {
    display: flex;
    justify-content: center;
    transition: 0.2s all linear;
}

.box {
    box-sizing: border-box;
}

.box-title {
    font-family: Muli-Bold, Muli !important;
    font-weight: bold;
    color: #333333;
    letter-spacing: 1px;
    font-size: 30px;
    margin-bottom: 12px;
    text-align: center
}

.sub-title {
    letter-spacing: 0px;
    font-size: 12px;
    color: #333333;
    text-align: center;
    margin-bottom: 24px;
}

.sub-title p:first-child {
    font-family: Muli-Bold, Muli !important;
    font-weight: bold;
}

.box-item {
    margin-bottom: 16px;
    position: relative;
    line-height: 15px;
}

.box-input {
    -webkit-appearance: none;
    display: block;
    padding: 12px 14px;
    border-radius: 0;
    border: 1px solid #D8D8D8;
    width: 100%;
    line-height: normal;
    resize: none;
    -webkit-transition: border-color .1s ease-in-out;
    transition: border-color .1s ease-in-out;
    background: transparent;
}

.box-input.is-error {
    border: 1px solid #E61717 !important;
}

.error-msg {
    height: 15px;
    font-size: 12px;
    font-weight: 300;
    color: #E61717;
    line-height: 15px;
    display: none;
    text-align: left;
    margin-top: 2px;
}

.is-error+.error-msg {
    display: block;
}

.input-label {
    position: absolute;
    bottom: calc(100% - 8px);
    left: 10px;
    padding: 0 5px;
    line-height: normal;
    color: #9d9d9d;
    font-size: 12px;
    opacity: 0;
    background: rgba(255, 255, 255, 0);
    pointer-events: none;
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.box-input:not(:placeholder-shown)~.input-label {
    opacity: 1;
    background: white;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.box-submit {
    width: 100%;
    height: 44px;
    line-height: 44px;
    padding: 0;
    text-align: center;
    font-size: 14px !important;
    color: #fff;
    font-family: Muli-Bold!important;
    letter-spacing: 1px!important;
    position: relative;
    border: 1px solid transparent;
    border-radius: 0;
    font-weight: 400;
    font-style: normal;
    background-color: transparent;
    -webkit-transition: color .45s cubic-bezier(.785, .135, .15, .86), border .45s cubic-bezier(.785, .135, .15, .86);
    transition: color .45s cubic-bezier(.785, .135, .15, .86), border .45s cubic-bezier(.785, .135, .15, .86);
    z-index: 1;
    -webkit-tap-highlight-color: initial;
    margin-bottom: 16px;
}

.box-submit::before {
    -webkit-transition: -webkit-transform .45s cubic-bezier(.785, .135, .15, .86);
    transition: -webkit-transform .45s cubic-bezier(.785, .135, .15, .86);
    transition: transform .45s cubic-bezier(.785, .135, .15, .86);
    transition: transform .45s cubic-bezier(.785, .135, .15, .86), -webkit-transform .45s cubic-bezier(.785, .135, .15, .86);
    background-color: #000;
    position: absolute;
    content: "";
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    z-index: -1;
}

.box-submit:hover {
    color: #000;
    background-color: transparent;
    border: 1px solid;
}

.box-submit:hover::before {
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    transform: scaleX(0);
}

.check-label {
    font-size: 12px;
    font-weight: 300;
    color: #333333;
    line-height: 15px;
    text-align: left;
}

.check-label a {
    text-decoration: underline;
    cursor: pointer;
}

@media screen and (min-width: 1025px) {
    .customer-wrap {
        margin: 60px auto 100px auto;
    }
    .box {
        min-width: 568px;
        padding: 40px 68px;
    }
}

@media screen and (max-width: 1024px) {
    .customer-wrap {
        margin-bottom: 40px;
    }
    .box-title {
        font-size: 18px;
        display: block;
        margin-top: 40px;
    }
    .box {
        display: block;
        max-width: 568px;
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }
    .box-submit {
        margin-top: 24px;
    }
}