body{
    min-height: 100vh;
    background-color: #F2F4F8;
}
.sign-up-page{

}
.back-btn{
    border: none;
    background-color: transparent;
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px;
    cursor: pointer;
}
.form-content{
    font-family: 'Poppins', sans-serif;
    max-width: 317px;
    margin: auto;
    padding: 290px 0 24px;
}
.form-title{
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}
.input-wrap{
    position: relative;
    margin-bottom: 16px;
}
.input-pass{
    padding-right: 48px;
}
.input-pass-icon{
    position: absolute;
    width: 48px;
    height: 48px;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.input{
    width: 100%;
    height: 48px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    color: #585858;
    padding: 12px;
    border: 1px solid #B6B6B6;
}
.input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #585858;
    opacity: 1; /* Firefox */
}

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

.input::-ms-input-placeholder { /* Microsoft Edge */
    color: #585858;
}
.form-btn-wrap{

}
.form-btn{
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    color: #ffffff;
    background-color: #2F80ED;
    border: 1px solid #B6B6B6;
    margin-top: 16px;
    cursor: pointer;
}
.form-text{
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #222222;
    text-align: center;
    margin-top: 24px;
}
.form-text span{
    font-weight: 600;
    color: #343434;
}
.form-text a{
    font-weight: 600;
    color: #5F5F5F;
}
.error-msg{
    display: none;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #DE291D;
    margin-top: 8px;
}
.input-wrap.error .input{
    border-color: #DE291D;
}
.input-wrap.error .error-msg{
    display: block;
}

.forgot-pass{
    text-align: right;
    margin-bottom: 32px;
}
.forgot-pass-link{
    display: inline-flex;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
}
.form-subtitle{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    margin-bottom: 16px;
    text-align: center;
}
.forgot-pass-page .form-title,
.new-pass-page .form-title,
.verification-page .form-title{
    margin-bottom: 4px;
}
.forgot-pass-page .form-btn,
.new-pass-page .form-btn,
.verification-page .form-btn{
    margin-top: 40px;
}
.new-pass-page .input-wrap,
.new-pass-page .form-subtitle,
.verification-page .form-subtitle{
    margin-bottom: 24px;
}
.verification-page .form-content{
    max-width: 380px;
}
.verification-page .form-btn{
    max-width: 317px;
    margin-right: auto;
    margin-left: auto;
}

.send-again {
    text-align: center;
    margin-top: -80px;
}
.send-again-link {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    color: #2F80ED;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline;
    overflow: visible;
}

.code-input-wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.code-input{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #000000;
    border: 1px solid rgba(182, 182, 182, 0.5);
    width: 59px;
    height: 56px;
    margin: 0 5px;
    padding: 18px 24px;
}
input.code-input::-webkit-outer-spin-button,
input.code-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type=number].code-input {
    -moz-appearance: textfield;
}