* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter';
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1em;
}

/* ------------------------------------------------- */

nav {
    width: 100%;
}

.nav-container {
    width: 75vw;
    max-width: 1200px;

    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px 0;
}

/* ------------------------------------------------- */

.main-container {
    display: flex;
    flex-direction: column;
    width: 75vw;
    max-width: 1100px;
}

/* ------------------------------------------------- */

.left-logo-title {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    gap: 10px;
}

.left-logo-title i {
    color: rgb(10, 35, 99);
    font-size: 1.5em;
}

.left-logo-title h3 {
    color: rgb(10, 35, 99);

    font-size: 1.25em;
    font-weight: 800;
}

/* ------------------------------------------------- */

.right-options {
    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 1.5em;
}

.right-options a {
    text-decoration: none;
    color: gray;

    cursor: pointer;
}

.right-options button {
    background-color: rgb(10, 35, 99);
    color: white;

    font-size: 1em;

    padding: 0.75em 1.25em;

    border: none;
    border-radius: 0.5em;

    cursor: pointer;
}

/* ------------------------------------------------- */

.img-form {
    display: flex;
    flex-direction: row;
    gap: 2em;
}

/* .hotels-img img {
    height: 500px;
    border-radius: 0.5em;
} */

.img-form img {
    width: 50%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* ------------------------------------------------- */

.form {
    width: 50%;
    display: flex;
    flex-direction: column;
    /* padding: 0 0 0 1em; */
    padding: 1.5em;
}

.form-title {
    margin-bottom: 1em;
}

.form-title h2 {
    font-size: 2.25em;
    margin-bottom: 5px;
}

.form-title p {
    font-size: 0.85em;
    color: gray;
}

/* ------------------------------------------------- */
/* ------------------------------------------------- */

#room-type {
    margin-top: 10px;
    /* margin-bottom: 4px; */
    margin-bottom: 8px;
}

/* ------------------------------------------------- */
/* ------------------------------------------------- */

.input-fields1 {
    display: flex;
    flex-direction: column;

    border-top: 1px solid lightgray;
    /* margin-top: 0.25em; */
}

/* ------------------------------------------------- */

.customer-details {
    display: flex;
    flex-direction: row;
    gap: 1em;

    margin-top: 1em;
}

#customer-details-h4 {
    margin-top: 10px;
    margin-bottom: 4px;
    margin-bottom: 8px;
}

.left-input-fields,
.right-input-fields {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ind-field input,
#No-of-days {
    width: 100%;
    padding: 10px;

    border: 1px solid lightgray;
    border-radius: 0.5em;

    margin-top: 0.5em;
    margin-bottom: 10px;
}

/* ------------------------------------------------- */
/* ------------------------------------------------- */

.radio-fields2 {
    border-top: 1px solid rgb(211, 211, 211);
    /* margin-top: 0.25em; */
}

.room-type {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 0.75em;
    margin-top: 1em;
}

.ind-field2 {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 0.75em;

    padding: 12px 16px;

    border-radius: 10px;
    border: 1px solid lightgray;

    cursor: pointer;
}

.ind-field2 img {
    height: 20px;
    width: 20px;
}

/* ------------------------------------------------- */
/* ------------------------------------------------- */

#add-ons {
    margin-top: 20px;
    margin-bottom: 8px;
}

.addons-section {
    border-top: 1px solid lightgray;

    display: flex;
    flex-direction: column;
    gap: 8px;
}

.addon-item {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 18px;
}

.addon-item input[type='checkbox'] {
    width: 20px;
    height: 20px;

    accent-color: rgb(10, 35, 99);
}

.addon-item i {
    width: 20px;
    text-align: center;
}

/* ------------------------------------------------- */

h5 {
    margin-top: 22px;
    margin-bottom: 8px;
}

/* .payment-section {

} */

.payment-section input {
    width: 100%;
    padding: 10px;

    border: 1px solid lightgray;
    border-radius: 8px;

    margin-top: 5px;
}

/* ------------------------------------------------- */

.submit-section {
    margin-top: 20px;
}

.submit-section button {
    width: 100%;
    /* padding: 16px; */
    padding: 0.75em;

    background-color: rgb(10, 35, 99);
    color: white;

    border: none;
    border-radius: 8px;

    font-size: 1em;
    cursor: pointer;
}

/* Extra Styling */

input::placeholder {
    /* By default */
    /* color: gray;   */

    color: lightgray;
}
