.securitySection {
    padding: 34px 26px;
    width: 75%;
    border-radius: 8px;
    border: 1px solid rgba(221, 221, 221, 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 6%);
    background-color: rgba(255, 255, 255, 100%);
    height: 90vh;
}

.securitySection h2 {
    color: #1B1B1F;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.17px;
    line-height: 24px;
    margin-bottom: 16px;
}

.formGroup {
    position: relative;
    width: 50%;
}

.input {
    border-radius: 6px;
    border: 1px solid rgba(215, 215, 215, 100%);
    height: 48px;
    opacity: 1;
    color: #44464F;
    font-size: 16px;
    font-weight: 300;
    font-style: light;
    letter-spacing: 0.5px;
    text-align: left;
    line-height: 24px;
    padding-left: 12px;
    box-shadow: none;
    outline: none;
    width: 100%;
    resize: none;
    transition: all 0.2s ease-in-out;
    background-color: transparent;
}

.eyeIcon {
    position: absolute;
    top: 12px;
    right: 15px;
    cursor: pointer;
}

.input::placeholder {
    opacity: 0;
    visibility: hidden;
    color: transparent;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-background-clip: text;
    /* stylelint-disable-line property-no-vendor-prefix */
    transition: 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px #fff;
}

.input:focus~.formLabel {
    top: -0.75rem;
    left: 1rem;
    z-index: 5;
    color: rgba(68, 70, 79, 1);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.25px;
    line-height: 20px;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
}

.input:not(:placeholder-shown).input:not(:focus)~.formLabel {
    top: -0.75rem;
    left: 1rem;
    z-index: 9;
    color: rgba(68, 70, 79, 1);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.25px;
    line-height: 20px;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
}

.formLabel {
    position: absolute;
    left: 1rem;
    top: 15px;
    padding: 0 0.25rem;
    transition: all 0.3s ease;
    color: #44464F;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.25px;
    line-height: 20px;
}

.forgotPassword {
    margin-bottom: 10px;
    margin-top: 3px;
}

.forgotPassword a {
    color: #1CA3DC;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.38px;
    line-height: 24px;
}

.passwordProgress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 7px;
}

.progressWrap {
    height: 4px;
    background-color: #D7D7D7;
    width: 96px;
}

.progressWrap.active {
    background-color: #34C759;
}

.progressLabel {
    color: #34C759;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.38px;
    text-align: right;
    line-height: 24px;
    margin-bottom: 7px;
}

.saveBtn {
    border-radius: 8px;
    border: 1px solid #1CA3DC;
    opacity: 1;
    background-color: #1CA3DC;
    width: 101px;
    height: 48px;
    opacity: 1;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin-top: 22px;
}

.passwordWeak .input{
    border-color: #FF4C4C;
}

.passwordFair .input{
    border-color: #FFA500;
}

.passwordGood .input{
    border-color: #FFD700;
}

.passwordStrong .input{
    border-color: #32CD32;
}

.passwordVeryStrong .input{
    border-color: #0078D7;
}