/* BOOKING FORM STYLES */

.book_form_panel
{
max-width:1000px;
margin:40px auto;
background:#f3f3f3;
border:1px solid #666666;
padding:35px 40px;
box-shadow:0 12px 28px rgba(0,0,0,0.40);
}

.book_form
{
max-width:1000px;
margin:30px auto 0 auto;
}

.book_form_grid
{
display:grid;
gap:24px;
}

.book_form_grid_2
{
grid-template-columns:repeat(2,1fr);
margin-bottom:24px;
}

.book_form_row
{
display:flex;
flex-direction:column;
margin-bottom:24px;
}

.book_form_row label
{
font-size:95%;
font-weight:500;
color:#333333;
margin-bottom:8px;
line-height:1.4;
}

.book_form input,
.book_form select,
.book_form textarea
{
width:100%;
box-sizing:border-box;
font-family:'Montserrat', sans-serif;
font-size:95%;
color:#333333;
padding:16px 18px;
background:#ffffff;
border:1px solid #bbbbbb;
outline:none;
transition:border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.book_form textarea
{
resize:vertical;
min-height:170px;
}

.book_form input:focus,
.book_form select:focus,
.book_form textarea:focus
{
border-color:#C6A25A;
box-shadow:0 0 0 2px rgba(198,162,90,0.15);
}

.book_form select
{
appearance:none;
-webkit-appearance:none;
-moz-appearance:none;
background-image:linear-gradient(45deg, transparent 50%, #666 50%), linear-gradient(135deg, #666 50%, transparent 50%);
background-position:calc(100% - 22px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
background-size:6px 6px, 6px 6px;
background-repeat:no-repeat;
padding-right:48px;
}

.book_form_submit
{
margin-top:10px;
margin-bottom:0;
}

.book_form_submit button
{
background:#000000;
color:#C6A25A;
border:1px solid #C6A25A;
padding:14px 26px;
font-family:'Montserrat', sans-serif;
font-size:95%;
font-weight:500;
letter-spacing:0.5px;
cursor:pointer;
transition:all .25s ease;
}

.book_form_submit button:hover
{
color:#ffffff;
border-color:#ffffff;
background:#111111;
}

.book_honeypot_row
{
position:absolute;
left:-9999px;
width:1px;
height:1px;
overflow:hidden;
}

.book_form_error
{
padding:14px 16px;
margin:0 0 20px 0;
background:#fff1f1;
border:1px solid #d8a2a2;
color:#7a1f1f;
text-align:center;
}

.book_form_reassurance
{
font-size:14px;
color:#777;
margin-top:10px;
font-style:italic;
text-align:center;
}

@media (max-width:800px)
{
.book_form_grid_2
{
grid-template-columns:1fr;
gap:0;
margin-bottom:0;
}

.book_form input,
.book_form select,
.book_form textarea
{
padding:14px 16px;
font-size:92%;
}

.book_form_submit button
{
width:100%;
}
}