/* Spinner */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-left: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* reset link view */
.form-wrapper{
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    width: 80%;
}
.form-wrapper .password-wrapper{
    display: flex;
    align-items: flex-start;
    justify-content: start;
    flex-direction: row;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    border-radius: 10px;
    padding: 5px;
    height: 100%;
    width: 100%;
}
.form-wrapper .password-wrapper input{
    width: 100%;
    border: none;
    box-shadow: none;
    outline: none;
    height: 100%;

}
.form-wrapper .password-wrapper button{
    width: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    border: none;
    box-shadow: none;
    outline: none;
background-color: transparent;
}
.form-wrapper .password-wrapper button span{
    margin: 0;
   }

