.reset_body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #ffffff;
    margin: 0;
}

.reset_main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.reset_password_container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 35px 30px;
    width: 420px;
    border-radius: 10px;
    box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.3);
    background-color: #4f4f4f;
    color: #e3e3e3;
}

.reset_title {
    font-size: 22px;
    text-align: center;
    margin-bottom: 5px;
}

.reset_description {
    font-size: 13px;
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 10px;
}

.reset_password_form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form_group-reset {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.label_reset {
    font-size: 14px;
    color: #e3e3e3;
}

.fields-reset {
    width: 100%;
    height: 34px;
    padding: 0 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.reset-button {
    background-color: #2a76ef;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 15px;
    margin-top: 5px;
}

.reset-button:hover {
    background-color: #2e59f6;
}
