
*{
    letter-spacing: -0.5px;
    color: #011627;
}
html, body{
    margin: 0;
    padding: 0;
    color: #011627;
    font-family: 'Open Sans';
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* background-color: #fafafa; */
}
.fullbody{
    display: flex;
    width: 80%;
    max-width: 1250px;
    margin: auto;
    height: 100vh;
}
.loginimage{
    width: 0%;
    display: flex;
    margin: auto;
    align-items: center;
    /* display: none; */
}
.loginimage img{
    margin: auto;
    width: 85%;
    display: none;
}

/* inside container */
.container{
    /*max-width: 350px;*/
    height: 85vh;
    margin: auto;
    /* margin-top: 0vh; */
    width: 100%;
    display: flex;
}

.wrapper{
    max-width: 350px;
    width: 70%;
    height: 565px;
    /* min-height: 550px; */
    margin: auto;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    text-align: left;
    position: relative;
    background-color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: center;
}

/* title and header */

#title{
    margin: 0px;
    font-size: 14px;
    font-weight: bold;
    color: #3179F5;
    margin-bottom: 3%;
}
#title a {
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: -1px;
}
#title sup {
    text-decoration: none;
    font-weight: 900;
    font-size: 10px;
    letter-spacing: -1px;
}

#header{
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -1px;
    height: 30%;
}

#header span{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

#bold{
    font-weight: 600;
    color: #3179F5;
}

form{
    margin-bottom: 30px;
}

.input-field{
    position: relative;
    display: block;
    align-items: center;
    margin: 5px auto;
    text-align: left;
}

.input-field input{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    outline: none;
    box-sizing: border-box;
    border: 1px solid #f0f0f0;
    border-radius: 3px;
    margin: auto 0%;
    padding: 10px;
    padding-left: 45px;
    font-size: 20px;
    font-family: inherit;
    font-weight: 700;
    /* color: #011627; */
    box-shadow: none !important;
}

.input-field label{
    position: absolute;
    left: 5%;
    bottom: 10px;
    width: fit-content;
    height: fit-content;
    background-color: white;
    pointer-events: none;
}

.input-field input:focus + label,
.input-field input:valid + label{
    font-size: 11px;
    transform: translateY(-32px);
    transition: all .2s ease-out;
    /* color: #3179F5; */
    font-weight: 400;
    width: fit-content;
    text-align: center;
}
.back-button{
    color: white !important;
}

.input-field span{
    position: absolute;
    color: #011627;
    left: 10px;
    top: 11px;
    font-weight: 700;
    font-size: 20px;
}
#rc-anchor-container {
    background: #ffffff !important;
    color: #011627 !important;
    font-family: Open Sans !important;
    font-size: 12px !important;
}

.otp-input input{
        width: 50% !important;
    margin: auto 0% !important;
    text-align: left !important;
    padding: 10px !important;
    font-weight: 700;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none !important;
    margin-left: 0px;
}

.otp-input label{
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 14px !important;
    color: #ccc;    
}

.otp-input input:focus + label,
.otp-input input:valid + label{
    font-size: 11px !important;
    transform: translate(-5px,-32px) !important;
    transition: all .2s ease-out !important;
    color: #011627;
    font-weight: 400;
    width: fit-content;
    text-align: center;
    background-color: white;
    left: 5% !important;
    bottom: 10px;
    position: absolute;
}

#warning{
    font-size: 12px;
    font-weight: 600;
    color: #011627;
    font-style: italic;
}

/* browse button */
.browse{
    box-sizing: inherit;
    width: 80px;
    height: 20px;
    padding: 5px;
    font-weight: 700;
    border: 2px solid white;
    border-radius: 5px;
    color: white;
    background-color: #3179F5;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

/* uploaded file */

.uploaded-file{
    display: none;
    margin: 20px;   
    font-size: 12px;
    text-align: center;
    font-weight: 600;
}
/* submit button */

.submit-button{
    display: none;
}

/* buttons  */

.buttons{
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding: 0 0px;
    font-family: inherit;
}

.buttons button{
    box-sizing: inherit;
    width: 80px;
    height: 20px;
    padding: 10px 20px;
    border-radius: 35px;
    background-color: #3179F5;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    /* border: 1px solid #ebebeb; */
}

.cancel-button{
    float: left;
    color: #ccc;
    background-color: white;
    border: none;
    font-weight: 600;
}

.next-button{
    float: right;
    color: #011627;
    background-color: white;
    border: none;
    outline: none;
    /* border: 1px solid #e8e8e8; */
    font-weight: 600;
    font-size: 12px;
}

/* login option */
.login-option{
    font-size: 12px;
    text-align: left;
    margin-left: 0;
    margin-top: 10px;
    font-weight: 400;
}

.login-option a{
    color: #011627;
    font-size: 14px;
    font-weight: 700;
}

.note {
    display: none;
    margin-top: 5px;
    padding: 10px;
    text-align: left;
    font-weight: normal;
    font-family: inherit;
    font-size: 11px;
    position: relative;
    bottom: 0;
}

.note p{
    margin: 0;
    padding: 0;
}

/* links */

.links ul{
    display: flex;
    justify-content: space-between;
    list-style: none;
    font-size: 10px;
    margin: auto;
    /* margin-left: 2%; */
    padding: 0;
    width: 65%;
    padding-top: 5px;
    text-align: center;
    display: none;
}

.links ul li{
    flex: auto;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.links a{
    text-decoration: none;
    color: #011627;
    font-weight: 700;
    text-align: center;
}

/* loader */


.loader{
    width:100px; 
    height:25px; 
    margin:auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

.advisor-button {
    float: right;
    color: white;
    background-color: white;
    border: none;
    outline: none;
    /* border: 1px solid #ebebeb; */
    font-weight: 500;
    font-size: 12px;
    padding: 10px 1px;
    border-radius: 49px;
    background-color: white;
    text-align: left;
}
.advisor-button a{
    color: #011627;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Open Sans';
    text-decoration: underline;
}
.advisor-login {
    display: flex;
    flex-direction: column;
    width: 65%;
    justify-content: left;
    margin-left: 0%;
    margin-top: 40%;
}
.dashed{
    text-align: left;
    padding: 5px 0px;
    color: #011627;
    font-size: 12px;
    font-weight: 400;
}

/* responsive */

@media only screen and (max-width:768px){
    #header{
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -1px;
    }
    .container{
        max-width: 100%;
        width: 100%;
        background-color: #fffffff5;
        z-index: 1;
        height: 100%;
        margin: 0vh;
        overflow: auto;
    }
    
    .wrapper{
        max-width: 320px;
        border: 0px white solid;
        width: 100%;
        height: 80vh;
    }
    .fullbody {
    display: flex;
    width: 95%;
    max-width: 95%;
    margin: auto;
    height: 100vh;
    flex-direction: column;
    }
    .loginimage {
    width: 85%;
    display: flex;
    margin: auto;
    align-items: center;
    position: absolute;
    left: 7.5%;
    display: none;
    }
    .links ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    font-size: 10px;
    margin: auto;
    /* margin-left: 0%; */
    padding: 0;
    width: 85%;
    padding-top: 5px;
    text-align: center;
    }
    /*.input-field input {
    width: 95%;
    outline: none;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: auto;
    padding: 10px;
    padding-left: 20%;
    font-size: 24px;
    font-family: inherit;
    font-weight: 900;
    color: #505050;
    justify-content: center;
    display: block;
    letter-spacing: 0px;
    }*/
    /*.input-field span {
    position: absolute;
    color: #e8e8e8;
    left: 25px;
    top: 11px;
    font-weight: 900;
    font-size: 24px;
    }*/
    /*.input-field input:focus + label,
    .input-field input:valid + label{
        font-size: 11px;
        transform: translateY(-38px);
        transition: all .2s ease-out;
        color: #3179F5;
        font-weight: 700;
        width: fit-content;
        text-align: center;
    }*/
    /*.otp-input input:focus + label, .otp-input input:valid + label {
    font-size: 11px !important;
    transform: translate(-50%,-38px) !important;
    transition: all .2s ease-out !important;
    color: #3179F5;
    font-weight: bold;
    width: 30px;
    text-align: center;
    }*/
    .buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 0%;
    padding: 0 0px;
    font-family: inherit;
    }
    #header span {
        font-size: 16px;
        font-weight: 500;
        letter-spacing: -0.5px;
    }
    /*.otp-input input {
       width: 50% !important;
    margin: auto 0% !important;
    text-align: center !important;
    padding: 10px !important;
    font-weight: 900;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none !important;
    margin-left: 0px;
    }*/
}