
.reservar {
    position: relative;
    padding: 20px;
    background: #E0E1DD;
    padding-bottom: 50px;
}

.reservar h2 {
    text-align: center;
}

.error {
    text-align: center;
}


.reservation-form {
    background-color: #778DA9;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.8);
    max-width: 50%;
    margin: auto;
    margin-top: 30px;
    min-width: 400px;
    font-size: 18px;
}

.reservation-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea,
.reservation-form button {
    width: 98%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    background-color: #E0E1DD;
    color: #415A77;
}

.reservation-form textarea {
    resize: vertical;
    min-height: 80px;
}

.reservation-form select {
    width: 100%;
}

.reservation-form button {
    margin-top: 15px;
    background-color: #415A77;
    color: #E0E1DD;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.reservation-form button:hover {
    background-color: #1B3B5F;
}

.captcha {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.captcha img {
    max-height: 50px;
    border: 1px solid #E0E1DD;
    border-radius: 5px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-container input {
    width: auto;
    margin-right: 10px;
}
