* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  background-color: #f5f5f5f5;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.container {
  width: 100vw;
}

.logo {
    text-align: center;
}

.logo > img{
    width: 130px;
}

.info{
    width: 100vw;
    background-color: #000;
    overflow: hidden;
    text-align: center;
    height: 40px;
    padding-top: 10px;
}

.info > a{
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.booking-title{
    padding-top: 25px;
    width: 50vw;
    height: 10vh;
    margin-left: 25vw;
    margin-top: 4vh;
    background:  #fff;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-align: center;
    border-bottom: 1px solid #000;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.booking-title > span{
    color: #000;
    font-size: 17px;
    font-weight: bold;
}

.booking-body{
    width: 50vw;
    padding-top: 10px;
    margin-left: 25vw;
    background: #fff;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding-bottom: 20px;
}

.input {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px 10px;
    /* width: 50vw; */
    margin-top: 10px;
}

.input i{
    margin-right: 8px;
    padding-right: 8px;
    font-size: 30px;
    color: #555;
    border-right: 1px solid #ccc;
}

.input input, select{
    border: none;
    outline: none;
    flex: 1;
    height: 30px;
    font-size: 16px;
    background: #fff;
    color: #000;
}

.form-submit {
    padding-top: 20px;
    text-align: center;
}

.form-submit > button{
    height: 35px;
    width: 10vw;
    border-radius: 25px;
    background-color: #B18D7F;
    color: #ffffff;
    font-size: 15px;
    border: 0;
    animation-name: reverse;
    animation-duration: 3s;
    cursor: pointer;
}

.booking-footer{
    width: 50vw;
    height: 100px;
    padding-top: 10px;
    margin-left: 25vw;
    padding-top: 25px;
    background: #fff;
    border-top: 1px solid #000;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    font-size: 17px;
    text-align: center;
}

.developed > a{
    text-decoration: none;
    color:#0069d9;
}

.overlay-container { 
    display: none;
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.1); 
    justify-content: center; 
    align-items: center; 
    opacity: 0.8; 
    transition: opacity 0.3s ease;
} 

.popup-box { 
    background: #fff; 
    padding: 24px; 
    border-radius: 12px; 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4); 
    width: 50vw; 
    text-align: center; 
    opacity: 1;
    transform: scale(0.8); 
    animation: fadeInUp 0.5s ease-out forwards; 
} 

.popup-box-documents { 
    background: #fff; 
    padding: 24px; 
    border-radius: 12px; 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4); 
    width: 75vw; 
    text-align: center; 
    opacity: 0; 
    transform: scale(0.8); 
    animation: fadeInUp 0.5s ease-out forwards; 
} 

.form-container { 
    display: flex; 
    flex-direction: column; 
} 

.form-label { 
    margin-bottom: 10px; 
    font-size: 14px; 
    color: #444; 
    text-align: left; 
    font-weight: bold;
} 

.form-input { 
    padding: 10px; 
    margin-bottom: 20px; 
    border: 1px solid #ccc; 
    border-radius: 8px; 
    font-size: 17px; 
    width: 100%; 
    box-sizing: border-box; 
    text-decoration: none;
    color: #000;
    cursor: pointer;
    text-align: left;
} 

.btn-close-popup { 
    padding: 12px 12px; 
    border: none; 
    border-radius: 8px; 
    cursor: pointer; 
    transition: background-color 0.3s ease, color 0.3s ease; 
} 

.btn-close-popup { 
    margin-top: 12px; 
    width: 25vw;
    background-color: #e74c3c; 
    color: #fff; 
} 

.btn-close-popup:hover { 
    background-color: #8b0000; 
} 

/* Animation for popup */ 
.overlay-container.show { 
    display: flex; 
    opacity: 1; 
} 

@media screen and (min-device-width: 340px) and (max-device-width: 450px) and (orientation: portrait) {
    .booking-title{
        padding-top: 30px;
        width: 80vw;
        height: 10vh;
        margin-left: 10vw;
        margin-top: 2vh;
        background:  #fff;
        box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        border-bottom: 1px solid #000;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .booking-title > span{
        text-align: center;
        color: #000;
        font-size: 17px;
        font-weight: bold;
    }

    .booking-body{
        width: 80vw;
        padding-top: 10px;
        margin-left: 10vw;
        background: #fff;
        padding-bottom: 20px;
    }

    .input {
        border-radius: 5px;
        padding: 5px 10px;
        width: 80vw;
        margin-top: 10px;
    }

    .form-submit {
        padding-top: 20px;
        text-align: center;
    }

    .form-submit > button{
        height: 35px;
        width: 25vw;
        border-radius: 25px;
        font-size: 15px;
    }

    .booking-footer{
        width: 80vw;
        height: 100px;
        padding-top: 30px;
        margin-left: 10vw;
        font-size: 10px;
    }

    .popup-box { 
        width: 90vw; 
    } 

    .form-label { 
        margin-bottom: 10px; 
        font-size: 17px; 
        color: #444; 
        text-align: left; 
        font-weight: bold;
    } 

    .form-input { 
        text-align: left;
    } 

    .btn-close-popup { 
        width: 50vw;
    } 

}