@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
    
.loading-spinner {
    border: 6px solid #f3f3f3; 
    border-top: 6px solid #c2b483; 
    border-radius: 50%; 
    width: 35px;
    height: 35px;
    animation: rotate 1s linear infinite; 
    margin: 30px auto; 
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#custom-password-change-form > * {

}

#custom-password-change-form {
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#custom-password-change-form form {
    width: 100%;
    animation: fadeIn 0.5s ease-in-out;
}
#custom-password-change-form label { margin-bottom: 8px; }
#custom-password-change-form #submit-button, #custom-password-change-form #reset-form-button { width: 200px; }

.field-wrapper {
    margin-bottom: 20px;
}

.submit-wrapper {
    display: flex;
    justify-content: center;
}

.password-wrapper {
    display: flex;
    align-items: center; 
}

.pwd-field {
    width: 100%;
    padding-right: 40px !important;
}

.toggle-show-hide {
    border: none;
    width: 40px;
    padding-right: 0;
    padding-left: 0;
    margin-left: -40px;
    cursor: pointer;
}
.toggle-show-hide:hover { background: none; }
.toggle-show-hide:focus { background: none; }
.toggle-show-hide i { color: black; }
.toggle-show-hide:hover i { color: black; }

#password-mismatch-result {
    height: 1em;
}

#submit-button, #reset-form-button {
    border: solid .5px black;
    border-radius: 5px;
    color: black;
}
#submit-button:hover { background: none; }
#submit-button:not([disabled]):hover , #reset-form-button:hover { background-color: #f3f3f3; }
#submit-button:focus , #reset-form-button:focus { background: none; }

#submit-button:disabled { opacity: 0.5; }
#reset-form-button { margin-top: 20px; }

.loading-div { margin-top: -50px; }
.response-message { margin-top: -50px; }