body {
    font-family: sans-serif;
    background-color: #f0f2f5;
}

.container{
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 80vw;
    margin: auto;
    margin-top: 5vh;
    padding: 1rem;
    @media (min-width: 768px) {
      width: 50vw;
    }
}

h1 {
    margin: 0 0 1rem;
    text-align: center;
}

.form-group {
    display: flex;
    gap: 0.8rem;
    flex-direction: column;
    align-items: center;
}

button {
    background-color: transparent;
    border: none;
    touch-action: manipulation;
    cursor: pointer;  
    padding: 6px 14px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 0.5px 2px 1px rgba(0, 0, 0, 0.1);
    &:active {
        box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.1),
        inset 2px 2px 5px rgba(0, 0, 0, 0.1);
        background-color: rgba(0, 0, 0, 0.055);
    }
}

#reset_password_request_form_email {
    margin-left: 0.5rem;
}