.verify-banner {
	background-image: linear-gradient(to bottom, #d4e9fe, #fff);
	padding: 10rem 0;

}
.verify-banner .template_title {
	text-align: center;
  justify-content: center;
}
.verify-banner .template_title h1 {
	font-size: 3.2rem;
    color: #232323;
    margin-bottom: 1.8rem;
    font-weight: 600;
}
.verify-banner .template_title p {
	width: 45%;
	margin: 0 auto 5rem auto;
}
.verify-form {
	width: 65%;
	margin: 0 auto;
}
.verify-form input[type="text"] {
	width: 80%;
    min-width: 17rem;
    height: 65px;
    padding-left: 30px;
    font-size: 18px;
    border: 1px solid #F8F8F8;
    border-radius: 5px;
    background-color: #fff;
	margin-right: -1%;
    flex: 1;
    color: #000;
}
.verify-form input[type="submit"] {
	 background: #1f93d2;
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: center;
    width: 20%;
    font-weight: 400;
    font-size: 18px;
    padding: 0;
    font-family: inherit;
    text-indent: unset;
    height: 65px;
    border-radius: 5px;
    border: 1px solid transparent;
    margin-left: 2px;
    transition: all 0.2s;
    text-transform: capitalize;
}
.verify-form input[type="submit"]:hover {
    background-color: black;
    color: white;
    border-color: black;
}
::-webkit-input-placeholder { /* Edge */
  color: #999;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #999;
}

::placeholder {
  color: #999;
}

.obtain .template_title {
	text-align: center;
}
.obtain .template_title h2 {
	font-size: 2.6rem;
	margin-bottom: 1.5rem;
}
.obtain .template_title p {
	width: 50%;
	margin: 0 auto 4rem auto;
}
.obtain .obtain-video video {
	width: 100%;
}

 #code {}


    .submit_btn {
        outline: none;
        width: 100%;
        height: 50px;
        background: black;
        color: white;
        border: none;
        line-height: 50px;
        margin-top: 20px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        cursor: pointer;
        border-radius: 3px;
    }

    .fw-container {
        display: flex;
        margin: 0 auto 0;
        flex-direction: column;
        padding: 0 10px;
    }

    .query_btn_code {
        display: flex;
        
    justify-content: center;
		
        margin-bottom: 3vw;
        flex-direction: column;
    }
    .query_btn_code .box{
      width: 580px;
      margin-left: auto;
      margin-right: auto;
    }
    .queryBar {
        display: flex;
        width: 100%;
        margin: 0 auto;
        position: relative;
        height: 50px;
        flex-direction: column;
        border: 1px solid;
        border-radius: 3px;
        margin-bottom: 20px;
        box-sizing: border-box;
    }

    .result_content {
        min-height: 80px;
        margin-left: auto;
        margin-right: auto;
        max-width: 580px;
        background-color: #FAFAFA;
        width: 100%;
        margin-top: 20px;
        padding: 10px 10px 10px 10px;
        box-sizing: border-box;
        font-size: 14px;
        position: relative;
        display: flex;
    }

    #code::placeholder {
        font-size: 13px;
    }

    .tip {
        position: absolute;
        /* transform: translateY(100%); */
        transition: all 0.3s;
        height: max-content;
        padding-left: 12px;
        font-size: 15px;
        pointer-events: none;
        color: #777;
        max-height: max-content;
        bottom: 0;
        top: 0;
        margin: auto;
        line-height: initial;
        /* margin-bottom: 10px; */
    }



    body {
        font-family: Arial, sans-serif;
        user-select: none;
    }

    .entry-title {
        text-align: center;
        font-size: 30px;
    }

    @media screen and (max-width:768px) {
        .queryBar {
            /* padding: 4px 0; */
        }
    }

    @media screen and (min-width:960px) {
        .box {
            display: flex;
        }

        .submit_btn {
            margin: 0;
            width: 30%;
            margin-left: 10px;
        }

    }


    #error-icon,
    #repeat-icon,
    #success-icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: none;
        flex-shrink: 0;
        margin-right: 15px;
    }

    #error-icon {
        background-color: red;
    }

    #repeat-icon {
        background-color: #FFAA00;
    }

    #success-icon {
        background-color: #18B84B;
    }

    h1 {
        text-align: center;
        margin-top: 90px;
    }

    .loadding {
        position: relative;
        display: none;
        justify-content: center;
        width: 30px;
        height: 30px;
        animation: demo 0.8s linear infinite;
    }

    @keyframes demo {
        to {
            transform: rotateZ(360deg);

        }

    }

    .loadding span {
        width: 2px;
        height: 9px;
        transform-origin: 50% 15px;
        position: absolute;
        background-color: white;
    }

    .close-icon {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: #8A8A8A;
        position: absolute;
        right: 0;
        bottom: 0;
        margin: 5px;
        display: none;
    }

    .close-icon::before,
    .close-icon::after {
        content: '';
        position: absolute;
        width: 50%;
        height: 2px;
        background: white;
        top: 0;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 0;
    }

    .close-icon::after {
        transform: rotate(45deg);
    }

    .close-icon::before {
        transform: rotate(-45deg);
    }