.hidden {
    display: none;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
}
.modal-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    background: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 300px;
    border-radius: 20px;
}
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
}
.form-button {
    cursor: pointer;
    padding: 10px;
    width: 70px;
    margin: 0 auto;
    border-radius: 10px;
    color: white;
    background-color: blue;
    border: none;
}
.form-button:hover{
    border: 1px solid blue;
    color: blue;
    background-color: white;
}