 @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
     font-family: 'poppins', sans-serif;
}

body::before{
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  background: url(../../images/airplane-6674689_1280.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 12%; 
  z-index: -1; 

}

 
 form{
   position: fixed;
   display: flex;
   flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 350px;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 1rem; 
    background-color: rgb(224, 224, 237);
    padding: 34px;
    border-radius: 6px;
    margin: 40px auto;
    box-shadow: 1px 1px 6px rgb(71, 70, 70);

}

label{
    font-size: 1.5rem;
    font-weight: 800;
    color: rgb(57, 57, 54);
    
}

input{
    padding: 12px;
    /* width: 100%; */
    color: orange;
    outline: 0;
    font-size: 1.8rem;
    background: transparent;
    border: 1px solid #fff;
    border-bottom: 1px solid #fff;
    text-align: center;
}

::placeholder{
    color: orange;
    font-size: 1.1rem;
    text-align: center;

}

button{
    padding: 12px 52px;
   background-color: gray;
   color: #fff;
    font-size: 1.2rem;
    border: 0;
    /* margin-right: 12px; */
    transition: 1s ease-in-out;
   
}
