* {
    letter-spacing: -0.5px;
}

html,
body {
    margin: 0;
    padding: 0;
    color: #011627;
    font-family: 'Open Sans';
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.fullbody {
    display: flex;
    width: 80%;
    max-width: 1250px;
    margin: auto;
    height: 100vh;
}

.loginimage {
    width: 50%;
    display: flex;
    margin: auto;
    align-items: center;
}

.loginimage img {
    margin: auto;
    width: 85%;
}

/* inside container */
.container {
    height: fit-content;
    margin: auto;
    /* margin-top: 0vh; */
    width: 50%;
}

.wrapper {
    max-width: 350px;
    width: 70%;
    height: 85vh;
    min-height: fit-content;
    margin: auto;
    border: 1px lightgray solid;
    border-radius: 10px;
    text-align: center;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* title and header */

#title {
    margin: 0px;
    font-size: 14px;
    font-weight: bold;
    color: #011627;
    margin-bottom: 3%;
    justify-content: flex-start;
    display: flex;
    height: 5%;
}

#title a {
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    color: #011627;
    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;
    text-align: left;
    height: 20%;
}

.thirdsection {
    height: 75%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

#header span {
    font-size: 14px;
    font-weight: 600;
}

#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 {
    width: 95%;
    outline: none;
    box-sizing: border-box;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    margin: auto;
    margin-left: 0px;
    padding: 10px;
    padding-left: 40px;
    font-size: 14px;
    font-family: inherit;
    font-weight: 600;
    color: #011627;
    height: 50px;
}

.input-field label {
    position: absolute;
    left: 3%;
    bottom: 15px;
    width: fit-content;
    height: fit-content;
    background-color: white;
    pointer-events: none;
    font-size: 11px;
    font-weight: 500;
    color: #011627;
    transform: translateY(-27px);
}

.input-field input:focus+label,
.input-field input:valid+label {
    font-size: 11px;
    transform: translateY(-27px);
    transition: all .2s ease-out;
    color: #011627;
    font-weight: 500;
    width: fit-content;
    text-align: center;
}

.input-field span {
    position: absolute;
    color: #3179F5;
    left: 25px;
    top: 11px;
    font-weight: 600;
    font-size: 14px;
}

.otp-input input {
    width: 50% !important;
    text-align: left !important;
    padding: 10px !important;
    font-weight: 600;
    margin-left: 0px !important;
}

.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(-165px, -27px) !important;
    transition: all .2s ease-out !important;
    color: #011627;
    font-weight: 500;
    width: 30px;
    text-align: left;
    position: absolute;
}

.input-field span {
    position: absolute;
    color: #011627;
    left: 5px;
    top: 12px;
    font-weight: 600;
    font-size: 19px;
}

#warning {
    font-size: 11px;
    font-weight: 700;
    color: #e51a4b;
}

/* browse button */
.browse {
    box-sizing: inherit;
    width: 80px;
    height: fit-content;
    padding: 7px 20px;
    font-weight: 900;
    border: 1px solid #3179F5;
    border-radius: 3px;
    color: #3179F5;
    background-color: white;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
}

/* uploaded file */

.uploaded-file {
    display: none;
    margin: 20px;
    font-size: 11px;
    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 10px;
    font-family: inherit;
}

.buttons button {
    box-sizing: inherit;
    width: fit-content;
    height: 20px;
    padding: 0;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 40px;
    border-radius: 35px !important;
}

.cancel-button {
    float: left;
    color: #011627;
    background-color: white;
    border: none;
    font-weight: 600;
    padding-left: 0px !important;
}

.next-button {
    float: right;
    color: white;
    background-color: #3179F5;
    border: none;
    outline: none;
    border: 1px solid #3179F5;
    font-weight: 600;
    font-size: 12px;
    padding: 10px 40px !important;
    border-radius: 35px !important;
}

/* login option */

.login-option {
    font-size: 12px;
    text-align: left;
    margin-left: 15px;
    margin-top: 20px;
    font-weight: 600;
}

.login-option a {
    color: #3179F5;
    font-size: 12px;
    font-weight: 700;
}

.note {
    display: block;
    margin-top: 20px;
    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;
}

.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;
    display: flex;
    justify-content: center;
}

.advisor-button {
    float: right;
    color: #3179F5;
    background-color: white;
    border: none;
    outline: none;
    border: 1px solid #3179F5;
    font-weight: 600;
    font-size: 12px;
    padding: 10px 20px;
    border-radius: 3px;
}

.advisor-button a {
    color: #3179F5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
}

.advisor-login {
    display: flex;
    flex-direction: column;
    width: 65%;
    justify-content: left;
    margin-left: 5%;
    margin-top: 3%;
}

.dashed {
    text-align: left;
    padding: 5px 0px;
    color: #ccc;
    font-size: 12px;
}
.otp-input input:focus+label,
    .otp-input input:valid+label {
        font-size: 11px;
        transition: all .2s ease-out;
        color: #011627;
        font-weight: 500;
        width: fit-content;
        text-align: center;
        transform: translate(-160px, -27px) !important;
    }


/* responsive */

@media screen and (max-width:1000px) {
    #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;
    }
    .wrapper {
        max-width: 350px;
        width: 70%;
        height: 85vh;
        min-height: fit-content;
        margin: auto;
        border: 1px lightgray solid;
        border-radius: 10px;
        text-align: center;
        position: relative;
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .wrapper {
        max-width: 90%;
        border: 0px white solid;
        width: 100%;
        height: 90vh;
    }

    .fullbody {
        display: flex;
        width: 100%;
        max-width: 100%;
        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;
        padding: 0;
        width: 90%;
        padding-top: 5px;
        text-align: center;
    }

    .input-field input {
        width: 100%;
        outline: none;
        box-sizing: border-box;
        border: 1px solid #e8e8e8;
        border-radius: 5px;
        margin: auto;
        padding: 10px;
        padding-left: 45px;
        font-size: 16px;
        font-family: inherit;
        font-weight: 600;
        color: #011627;
        justify-content: center;
        display: block;
    }

    .input-field input:focus+label,
    .input-field input:valid+label {
        font-size: 11px;
        transition: all .2s ease-out;
        color: #011627;
        font-weight: 500;
        width: fit-content;
        text-align: center;
        transform: translate(0px, -27px) !important;
    }
    .otp-input input:focus+label,
    .otp-input input:valid+label {
        font-size: 11px;
        transition: all .2s ease-out;
        color: #011627;
        font-weight: 500;
        width: fit-content;
        text-align: center;
        transform: translate(-160px, -27px) !important;
    }
    
}