* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    letter-spacing: 0.1em;
    border: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.main-wonder-screen{
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.title-forget-password{
    font-weight: 500;
    font-size: 40px;
    line-height: 80px;
    letter-spacing:0px;
}

.title-login{
    font-weight: 400;
    font-size: 65px;
    line-height: 80px;
}

.title-change-password{
    font-weight: 500;
    font-size: 40px;
    line-height: 80px;
    letter-spacing:0px;
}

.input-text-auth{
    width: 100%;
    max-height: 76px;
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 0px 24px 0px 24px;
}

.button-base-auth {
    background-color: #992C6A;
    width: 200px;
    height: 50px;
    border-radius: 12px;
    padding: 0px 32px 0px 32px;
    font-size: 20px;
    color: white;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.button-base-auth:hover {
    background-color: #7F2357; 
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2); 
}

.text-base{
    color: #992C6A;
}

.text-base:hover{
    color: #7F2357; 
}

#show-password-icon {
    display: block;
}

#hide-password-icon {
    display: none;
}

.field-icon {
    height: 37px;
    top: 0px;
    right: 0.5px;
    position: absolute;
    z-index: 99999999;
    padding-top: 0.5px
}

.icon-eye-password {
    border-radius: 0px 7.5px 7.5px 0px;
}

.form-control.is-valid, .was-validated .form-control:valid {
    background-image: none !important;
}
    
.form-control.is-invalid, .was-validated .form-control:invalid {
    background-image: none !important;
}

.text-resend-otp{
    letter-spacing: 0px;
    margin-top: 2px;
    font-size: 13px;
    margin-bottom: 0px;
}

.resend-otp-link{
    letter-spacing: 0px;
    margin-top: 3px;
    font-size: 13px;
    font-weight: 600;
    color: #992C6A;
}
.resend-otp-link:hover{
    text-decoration: none;
    color: #7F2357;
}

#toast-messages {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slide-down 0.5s ease-in-out;
}
  
@keyframes slide-down {
    from {
        transform: translate(-50%, -100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}
