.inputLabel {
    width: 100%;
}

.recover {
    margin: 10px 0px;
}

a {
    color: #2235A9;
    font-size: 90%;
}

.recoverWindow{
    background-color: #FFF;
    border-radius: 30px;
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.close:hover {
    cursor: pointer;
}


.headerPopup {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 24px;
}

.popupTitle {
    margin-left: 20px;
    color: #1A1F6D;
    font-size: 125%;
    font-weight: 600;
}

.steps {
    margin: 20px 20px;
}

.recoverPwd{
    margin-top: 10px;
}

#errorPopup, #confirmPopup {
    font-size: 14px;
    font-weight: 500;
    margin: 0px 20px;
}

#errorPopup{
    color: #F00;
}
#confirmPopup{
    color: #0F0;
}
.passHide{
    display: flex;
    align-items: center;
    border-radius: 7px;
    border-style: none;
    border: 1px solid #D3D2D2;
    width: 99%;
}

.passHide input {
    margin-top: 0px;
    border: none;
}

.eye {
    margin: 0px 10px;
    width: 16px;
    height: 15px;
    border: solid 1px #000;
    border-radius:  75% 15%;
    position: relative;
    transform: rotate(45deg);
    cursor: pointer;
}

.eye:before {
    content: '';
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    border: solid 1px #000;
    border-radius: 50%;
    left: 4px;
    top: 4px;
}

#user {
    width: 98%;
}