.reserve-form-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.reserve-form {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 500px;
}

.reserve-form h3 {
    margin-bottom: 15px;
}

.reserve-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

.reserve-form button {
    padding: 10px 20px;
    background: #222;
    color: #fff;
    border: none;
    cursor: pointer;
    width: 200px;
    background-color: #FFA434;
    border: 2px solid #FFA434;
    transition: 0.2s;

    &:hover {
        background-color: white;
        color: #FFA434;
        border: 2px solid #FFA434
    }
}

.reserve-form .close-reserve-form {
    margin-top: 10px;
    background: unset;
    color: #FFA434;
    border: 2px solid #FFA434;
    width: 200px;
    transition: 0.2s;

    &:hover {
        background-color: #FFA434;
        color: white;
    }
}