*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --accent: #d24a43;
    --l-accent: #df938f;
    --color: #ffffff;
    --second-color: #000000;
    --outer-margin: 10rem;
    --inner-margin: 5rem;
    --borderRadius: 14px;
    --iconWidth: 40px;
    --opacityHover: 0.7;
    --transitionHover: 0.300ms ease-in-out;
}

body {
    position: relative;
    font-family: 'Montserrat';
    background-color: #000;
    color: var(--color);
    padding: 0 2rem;
    border-radius: var(--borderRadius);
}

#scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background-color: var(--accent);
    z-index: 2;
    transition: width 250ms ease-out;
}

h1 {
    text-align: center;
    text-transform: uppercase;
}

article {
    display: flex;
    justify-content: center;
    align-items: center;
}

article section {
    flex-basis: 40%;
    height: 100%;
    min-height: 70vh;
    width: 100%;
    padding: 2rem;
    margin: 0 1rem;
}

.booking_image {
    background-image: url("/img/booking.webp");
    background-size: cover;
    background-repeat: no-repeat;
}

section div {
    border-bottom: 2px solid rgba(200, 200, 200, 1);
    border-radius: 0;
    min-height: 3rem;
    padding: 0.5rem;
    margin: 0.5rem;
}

input[type="date"] {
    background-color: #fff;
    color: black;
}

/* input {
    all: unset;
} */

input[type="radio"],
input[type="checkbox"] {
    border: 1px solid white;
    width: 10px;
    height: 10px;
}

select option {
    color: black;
}