.reset_title{
    text-align: center;
    padding-top: 80px;
    padding-bottom: 30px;
}

.reset_description{
    text-align: center;
    font-size: 20px;
    padding-bottom: 20px;
}

.reset_password_form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.5);
}

.fields-reset{
    width: 300px;
    height: 30px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    align-items: center;
}

#toast-message {
    display: none;
    position: fixed;
    top: 24px;
    right: 24px;
    min-width: 260px;
    max-width: 360px;
    padding: 14px 18px;
    border-radius: 8px;
    color: #fff;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

#toast-message.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

#toast-message.toast-ok {
    background-color: #2e7d32;
}

#toast-message.toast-error {
    background-color: #c62828;
}

#toast-message.toast-warning {
    background-color: #ed6c02;
}

#toast-message .toast-text {
    line-height: 1.4;
}
