.reset_password {
    background-color: #fff;
    width: 100%;
    max-width: 500px;
    margin: 40px auto;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
}

.reset_password .title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    color: #333;
}

.reset_password p {
    font-size: 15px;
    color: #666;
    text-align: center;
    margin: 0;
}

.description {
    font-size: 16px;
    color: #444;
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.form-reset-password {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-reset-password .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-reset-password label {
    font-weight: 500;
    color: #333;
}

.form-reset-password input {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.form-reset-password .text-danger p {
    margin: 0;
    font-size: 13px;
    color: #d9534f;
}

button.btn {
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

button.btn:hover {
    background-color: #0056b3;
}

@media (max-width: 600px) {
    .reset_password {
        padding: 20px 15px;
        margin: 20px auto;
    }

    .reset_password .title {
        font-size: 20px;
    }

    .form-reset-password input {
        font-size: 13px;
    }

    button.btn {
        font-size: 14px;
        padding: 9px 14px;
    }
}


.button_verify{
    background-color: transparent !important;
    border-bottom: none;
    color: #007bff !important;
    text-decoration: none;
    padding: 0;
    font-size: 14px;

}