h2{
    color: #333;
}

input{
    font-size: 18px;
    width: 381px;
}

button{
    width: 100px;
    align-self: flex-end;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

a{
    color: #333;
    text-decoration: none;
    font-weight: bold;
    margin-right: 10px;
    padding: 10px;
    border-radius: 4px;
    padding-left: 25px;
    padding-right: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

a:hover{
    background-color: rgb(221, 221, 221);
}

.reset-password-container{
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.reset-password-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 425px;
    max-width: 425px;
    
}

.reset-password-form form{
    width: 100%;
    max-width: 100%;
    padding: 20px;
    margin: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.action-button{
    margin-top: 10px;
    align-self: flex-end;
}

.attempt-message {
    color: #d9534f;
    margin: 10px 0;
    font-size: 0.9em;
}

button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

input:disabled {
    background-color: #f5f5f5;
}





