/* Sign up design */
#wpcontent, #wpfooter {
    background-color:  #EEF0FF;
}
#wpfooter {
    display: none;
}
#wpcontent, #wpbody-content {
    padding: 0;
}
.sign-up-container {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    min-height: 640px;
    background-color: #EEF0FF;
    height: calc(100vh - 32px);
}
.sign-up-container:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 250%;
    display: block;
    content: "";
    background: url(../images/Frame.png) repeat-x center bottom/30% auto;
    animation: get-in-touch-bg-scroll 50s linear infinite;
    -webkit-animation: get-in-touch-bg-scroll 50s linear infinite;
}
@keyframes get-in-touch-bg-scroll {
    0% {
        left: 0%;
    }
    100% {
        left: -125%;
    }
}

@-webkit-keyframes get-in-touch-bg-scroll {
    0% {
        left: 0%;
    }
    100% {
        left: -125%;
    }
}
.sign-up-box {
    width: 723px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    background: #ffffff;
    height: auto;
    transform: translate(0, -50%);
    top: 50%;
    z-index: 1001;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 10%), 0 5px 7px rgb(0 0 0 / 10%);
}
.sign-up-data {
    display: flex;
    align-content: center;
    align-items: center;
}
.sign-up-data .left-section {
    flex: 0 0 340px;
}
.sign-up-data .right-section {
    flex: 1;
    padding: 20px;
}
.left-section-img {
    display: block;
    width: 100%;
    height: auto;
}
.sign-up-header {
    /*font-family: Inter !important;*/
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 38px;
    width: 332px;
    margin-bottom: 20px;
}
.sign-up-desc {
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    width: 335px;
    margin-bottom: 41px;
}
.sign-up-email-box {
    position: relative;
    height: 40px;
    background: #EEF0FF;
    width: 330px;
    border-left: 4px solid #3246C0;
    margin-bottom: 30px;
}
.input-email {
    border: none !important;
    background: #EEF0FF !important;
    height: 40px !important;
    border-radius: 0 !important;
    color: #3246C0 !important;
    width: 100%;
}
.input-email::placeholder {
    color: #3246C0;
}
.input-email:focus {
    box-shadow: none !important;
    outline: none !important;
    border-color: #EEF0FF !important;
}
.sign-up-btn {
    position: absolute;
    top: 0;
    right: 0;
    padding: 9px 17px;
    background: #5067F3;
    box-shadow: -4px 8px 4px rgba(80, 103, 243, 0.01), -2px 5px 3px rgba(80, 103, 243, 0.05), -1px 2px 2px rgba(80, 103, 243, 0.09), 0px 1px 1px rgba(80, 103, 243, 0.1), 0px 0px 0px rgba(80, 103, 243, 0.1);
    border: 1px solid #5067F3;
    cursor: pointer;
}
.icon-right {
    color: #FEFEFE;
    font-size: 20px;
}
.sign-up-content {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    width: 334px;
    text-align: center;
    margin-bottom: 25px;
}
.skip-link {
    text-align: center;
}
.skip-link a{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-decoration-line: underline;
    color: #989898;
}
.skip-link a:hover {
    color: #5067F3;
}