#user-password-reset-form {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 500px;
    padding: 30px;
    border: 1px solid lightgray;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

#user-password-reset-form input {
    background-color: white;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
    line-height: 1;
    margin-bottom: 10px;
}

#user-password-reset-form input:focus {
    outline-color: black;
}

#user-password-reset-form button {
    margin-top: 10px;
    margin-bottom: 10px;
}

#user-password-reset-form button:disabled {
    background-color: darkgray;
}