.container{
    height: 450px;
    width: 600px;
    background-color: rgba(0, 0, 0, 0.463);
    border-radius:8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 28%;
    margin-top: 20px;
}
h2,h3{
    margin-top: 5px;
    padding-top: 10px;
    padding-bottom: 15px;
    color: rgb(255, 255, 255);
}
#bookingForm{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#bookingForm input{
    padding: 8px;
    width: 100%;
    border-radius: 2px;
    outline: none;
    border: none;
}
#bookingForm label{
    padding-top: 10px;
    color: aliceblue;
    font-size: 1em;
}
#bookingForm button{
    background-color: rgba(255, 255, 255, 0.087);
    border: rgb(0,207,170) 2px solid;
    padding: 10px 15px;
    width: 100%;
    border-radius: 3px;
    color: aliceblue;
    font-size: 15px;
    font-weight: 700;
}
p{
    color: aliceblue;
    padding: 10px 0;
}
body{
    background-image: url(./images/background-booking.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(7, 6, 6);
    height: 80px;
    position: sticky;
    top: 0px;
    z-index: 99;
}
.logo img{
    height: 100px;
    width: 100px;
}
.ul ul {
    display: flex;
    justify-content: space-around;
    gap: 30px;

}
.ul ul li{
    list-style: none;
    /* border-bottom: 2px solid rgb(255, 10, 10); */

}
.ul ul li a{
    text-decoration: none;
    font-size: 1.2em;
    color: rgb(188, 188, 188);
    text-transform: capitalize;
    border-bottom: 3px solid rgb(255, 0, 0);
    padding-bottom: 3px;
    display: block;
    width: 0%;
    transition: all 0.5s linear;
}
.ul ul li a:hover{
    color: rgb(255, 255, 255);
    border-bottom: 3px solid rgb(255, 0, 0);
    width: 100%;

}
.login button{
    padding: 8px 15px;
    margin-right: 50px;
    font-size: 1em;
    font-weight: 600;
    color: aliceblue;
    background-color: red;
    border: none;
    border-radius: 5px;
    transition: all 0.2s linear;
}
.login button a{
    color: aliceblue;
    text-decoration: none;
    
}
.login button:hover{
    background-color: rgba(255, 255, 255, 0.2);
}