.profileInfoWrapper{
    margin: 45px 0 80px;
    display: flex;
    gap: 25px;
    justify-content: center;
}
.singleProfileInputDiv{
    max-width: 490px;
    width: 100%;
}
.singleProfileInputDiv h2{
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #0E145F;
    padding-bottom: 12px;
    border-bottom: 1px solid #E9E9E9;
    font-family: 'Lato';
}
.singleInputWrapper{
    margin-top: 25px;
    position: relative;
}
.singleInputWrapper label{
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    display: block;
    margin-bottom: 7px;
    color: #0E145F;
}
.singleInputWrapper input{
    padding: 17px 12px;
    border: 1px solid #DEDEDE;
    border-radius: 5px;
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 100%;
    color: #0E145F;
    height: 50px;
}
.singleInputWrapper input::placeholder{
    color:#6B6E98;
}
.singleInputWrapper input:disabled{
    cursor: no-drop;
}
.singleInputWrapper input.invalid{
    border-color: #FF0004;
    background: #FFE3E7;
}
.singleInputWrapper a{
    display: block;
    margin-left: auto;
    max-width: max-content;
    font-size: 14px;
    line-height: 100%;
    margin-top: 10px;
    color: #52bab0;
}
.singleInputWrapper a:hover{
    text-decoration: underline;
}
.newPassWrap{
    display: none;
}
.changePassModal{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.7);
    z-index: 22;
    display: none;
}
.changePassContent{
    max-width: 570px;
    width: 100%;
    min-height: 458px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.changePassTop{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid #E9E9E9
}
.changePassTop p{
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #0E145F;
}
.changePassTop a{
    display: flex;
}
.changePassTop a:hover svg{
    transform: scale(1.07);
}
.changePassContent .singleInputWrapper{
    margin-top: 15px;
}
.changePassContent .singleInputWrapper span{
    position: absolute;
    right: 20px;
    bottom: 12px;
    cursor: pointer;
}
.changePassContent .singleInputWrapper span:hover{
    transform: scale(1.04);
}
.updatePassBtn {
    max-width: max-content;
    width: 100%;
    display: block;
    padding: 10px 30px 9px;
    margin: 25px auto 0;
    font-weight: 700;
    font-size: 15px;
    line-height: 135%;
    background: #52bab0;
    color: white;
    border-radius: 100px;
    border-bottom: 5px solid #45a49b;
    box-shadow: 0px 6px 7.3px 2px #52bab040;
    transition: all 0.2 ease;
}
.updatePassBtn:hover {
    box-shadow: 0px 3px 4px 1px #52bab040;
    transform: translateY(2px);
}
@media (max-width: 575px) {
    .profileInfoWrapper{
        flex-direction: column;
    }
    .changePassContent{
        max-width: calc(100% - 30px);
        padding: 30px 15px;
        min-height: unset;
    }
    .singleProfileInputDiv h2{
        font-size: 18px;
        line-height: 100%;
    }
    .singleInputWrapper label{
        font-size: 13px;
        line-height: 100%;
    }
    .dashboardSec::after{
        display: none;
    }
}