.change-psw-section{
    padding: 2em 0 5em 0;
}

.change-psw-section .row-change-psw{
    margin-top: 2em;
}

.change-psw-section .row-change-psw .wrapper-title{
    margin-top: 0.7em;
}

.change-psw-section .row-change-psw .wrapper-title h1{
    font-size: 2.3em;
}

.change-psw-section .wrapper-form{
    margin-top: 3em;
}

.change-psw-section .wrapper-form .column-input{
    margin-bottom: 1.5em;
}

.change-psw-section .wrapper-form .column-input:last-child{
    margin-bottom: 0;
}

.change-psw-section .wrapper-form .input-field{
    text-align: left;
    display: flex;
    flex-direction: column;
}

.change-psw-section .wrapper-form .input-field:last-child{
    margin-bottom: 0;
}

.change-psw-section .wrapper-form .input-field label{
    margin-bottom: 0.5em;
    font-size: 1.1em;
    font-family: "poppins-semibold", sans-serif;
}

.change-psw-section .wrapper-form .input-field .ui.input span, .change-psw-section .wrapper-form .input-field span{
    width: 100%;
    margin-top: 0.5em;
    line-height: 1.5;
}

.change-psw-section .wrapper-form .wrapper-btn{
    margin-top: 2.5em;
}

.change-psw-section .wrapper-form .wrapper-btn img{
    width: 2.5em;
    top: 50%;
    right: -3.5em;
    transform: translateY(-50%) rotateZ(0deg);
    animation: rotate_loader 2s linear infinite;
    animation-play-state: paused;
}

@keyframes rotate_loader{
    0%{
        transform: translateY(-50%) rotateZ(0deg);
    }
    100%{
        transform: translateY(-50%) rotateZ(360deg);
    }
}