body{
    background-image: url("/bgim/bg6.jpg") ;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: absolute;
}

nav{
    background-color: rgba(255, 0, 0, 0.219);
    padding: 6px 0;
    margin: 0;
    border-radius: 26px;

    box-shadow: 0 0 10px rgba(173, 0, 0, 0.699);
}
  
ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}
  
li{
    display: inline-block;
    
}
  
.link{
    display: inline-block;
    padding: 10px 30px;
    border-radius: 20px;
    margin-right: 10px;
    background-color: rgb(253, 144, 2);
    color: black;
    text-decoration: none;
    height: 10px;
    display: flex;
   align-items: center;
   justify-content: center;
}

.flight-button {
    background-color: rgb(233, 54, 0);
}
  
.link:hover{
    background-color: #ff9999; /* Change the color on hover */
}

.container{
    background-color: #0fe4f321;
    padding: 20px;
    border: 1px solid #04f7d709;
    border-radius: 5px;
    width: 50%;
    height: absolute;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
}
  
h1{
    padding-top: 2%;
    font-size: 48px;
    color: #030000;
    margin-bottom: 10px;
    margin: 0 auto;
    font-family: 'Imprint MT Shadow Regular';
    text-align: center;
    font-weight: lighter;
}
  
input[type="text"] {
    width: 600px;
    padding: 10px;
    margin: 12px 0;
    align-items: center;
    border: none;
    background: #f5f5f59a;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
  }

form{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}










  .registerbutton {
    display: block; /* Change display to block to center horizontally */
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00aeff;
    color: white;
    padding: 15px 20px;
    margin: 10px 0px;
    border: 1px solid rgba(0, 119, 255, 0.452);
    cursor: pointer;
    width: 26%;
    font-weight: bold;
    border-radius: 18px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  }
  
  .registerbutton:hover {
    background-color: #05a0fa;
  }