.page-reservations {
    background: var(--color-black);
}

.reservation-form-section {
    padding: 100px 0;
    background: var(--color-black);
    color: #d7d7d7;
}

.reservation-form-section__inner > p:first-child {
    margin: 0 0 30px;
    font-size: 16px;
}

.reservation-form {
    color: #d7d7d7;
}

.reservation-form fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.reservation-form fieldset:disabled,
.reservation-form fieldset:disabled * {
    opacity: 1;
}

.reservation-form legend {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.reservation-form label,
.reservation-form__label {
    display: block;
    margin-top: 10px;
    color: #d7d7d7;
    font-size: 16px;
    line-height: 1.2;
}

.reservation-form input[type="text"],
.reservation-form input[type="email"],
.reservation-form input[type="tel"] {
    width: 100%;
    height: 41px;
    border: 1px solid #85909d;
    border-radius: 3px;
    padding: 8px 15px;
    background: var(--color-white);
    color: #444;
}

.reservation-form input::placeholder {
    color: #a5a5a5;
}

.reservation-form__choice {
    display: flex !important;
    width: fit-content;
    align-items: center;
    gap: 5px;
    margin-top: 7px !important;
}

.reservation-form__choice input {
    width: 14px;
    height: 14px;
    margin: 0;
}

.reservation-form button {
    width: 100%;
    margin-top: 16px;
    border: 0;
    border-radius: 3px;
    padding: 11px;
    background: #61cf72;
    color: var(--color-white);
    font-size: 15px;
}

.reservation-form__group {
    margin-bottom: 10px;
}

.reservation-form fieldset.reservation-form__group {
    border: 0;
    padding: 0;
    margin: 0;
}

.reservation-form__status {
    margin: 16px 0 0;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border-left: 3px solid #61cf72;
    color: #b4b4b4;
    font-size: 14px;
}

@media (max-width: 767px) {
    .reservation-form-section {
        padding: 50px 0;
    }
}
