.main {
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #EAEAEA;
    position: relative;
    zoom: 1;
}
.verify_wrapper {
    width: 100%;
}
.verify_content_wrapper {
    position: relative;
}
.verify_content_background {
    width: 100%;
}
.verify_content_container {
    position: absolute;
    top: 40%;
    left: 100px;
}
.verify_content {
    display: flex;
    justify-content: center;
}

.verify_title {
    width: 100%;
    color: #000;
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 30px;
    letter-spacing: 3px;
    text-align: center;
}

.verify_input_wrapper {
    position: relative;
    padding-bottom: 30px;
}
.verify_cover_image {
    margin-top: 70px;
    width: 100%;
    height: auto;
    display: block;
}
.verify_input {
    width: 350px;
    height: 36px;
    background: none;
    outline: none;
    border: 1px solid #979797;
    border-radius: 20px;
    line-height: 28px;
}
.verify_input_button {
    position: absolute;
    top: 0;
    right: -2px;
    background-color: #BF0017;
    color: #fff;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    padding: 8px 20px;
    cursor: pointer;
}
.verify_result_wrapper {
    display: flex;
    justify-content: center;
    text-align: left;
    text-indent: 28px;
}
.verify_result {
    width: 350px;
    margin-bottom: 48px;
    font-size: 14px;
}


@media (max-width: 767px) {
    .verify_wrapper {
        margin-top: 60px;
    }
    .verify_content_container {
        top: 30%;
    }
    .verify_title {
        width: 100%;
        text-align: center;
    }
    .verify_cover_image {
        margin-top: 60px;
    }
    .verify_content {
        display: flex;
        justify-content: center;
    }
    .verify_input_wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .verify_input {
        margin-bottom: 20px;
    }
    .verify_input_button {
        position: relative;
        width: 150px;
        letter-spacing: 5px;
    }
    .verify_content_background_phone {
        width: 100%;
    }
    .verify_content_background {
        display: none;
    }
    .verify_content_container {
        position: absolute;
        top: 100px;
        left: 0px;
        width: 100%;
    }
    .verify_result_wrapper {
        text-align: center;
        text-indent: 0px;
    }
}
@media (min-width: 768px) {
    .verify_content_background_phone {
        display: none;
    }
}