body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0A0A2F;
}

.container {
    display: flex;
    margin-top:80px;
    width: 80%;
    height: 80vh;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.left-side {
    flex: 1;
}
.right-side {
    flex: 2;
}
.left-side, .right-side {
    display: flex;
    justify-content: center;
    align-items: center;
}
.left-side {
    background:#10001D;
}
.right-side {
    background:#2e213a;
}
.left-side img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.right-side {
    padding: 20px;
    color: white;
}

.reservation-form {
    width: 100%;
    max-width: 600px; /* Increase max-width to accommodate two columns */
    text-align: center;
}

.experience-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.experience-option {
    width: 70%;
    margin: 10px 0;
}

.experience-content {
    display: flex;
    align-items: center;
    border: 2px solid #ccc;
    padding: 5px;
    border-radius: 5px;
    background: white;
    color: black;
    cursor: pointer;
    transition: border-color 0.3s;
    width: 100%;
}

.experience-content img {
    width: 90px;
    max-width:5vw;
    border-radius: 5px;
    margin-right: 5px;
}

.experience-content div {
    text-align: left;
}

.experience-option input[type="radio"] {
    display: none;
}

.experience-option input[type="radio"]:checked + label .experience-content {
    border-color: #3B83FF;
}

button {
    margin-top: 12px;
    padding: 16px 20px;
    background-color: #8189967e;
    color: white;
    font-size:20pt;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #306ACD;
}


.input-field {
    width: 100%;
    max-width: 300px;
    padding: 18px 10px;
    margin: 10px 0;
    border: 2px solid #ccc;
    border-radius: 5px;
    background: #fff;
    color: #000;
    font-size: 20px;
}

.input-field:focus {
    border-color: #3B83FF;
    outline: none;
}

#arrival-date h2 {
    color: white;
}

#arrival-date p a {
    color: #3B83FF;
    text-decoration: none;
}

#arrival-date p a:hover {
    text-decoration: underline;
}

.validation-form {
    width: 100%;
    max-width: 600px;
    text-align: center;
    color: white;
    background-color: #2e213a;
    padding: 20px;
    border-radius: 5px;
}

.validation-form p {
    font-size: 1.2em;
    margin: 10px 0;
}

.button-group {
    margin-top: 20px;
}

.button-group form {
    display: inline-block;
    margin: 0 10px;
}


.validation-form {
    width: 40%;
    max-width: 600px;
    min-width: 300px;
    text-align: center;
    color: white;
    background-color: #2e213a;
    padding: 20px;
    border-radius: 5px;
}

.validation-form p {
    font-size: 1.2em;
    margin: 10px 0;
}

.summary-content {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.summary-image {
    max-width: 100px;
    border-radius: 5px;
    margin-right: 20px;
}

.summary-details {
    text-align: left;
}

.button-group {
    margin-top: 20px;
}

.button-group form {
    display: inline-block;
    margin: 0 10px;
}

.validation-form button {
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.validation-form button:hover {
    background-color: #306ACD;
}
