@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin:0;
    padding:0;
 }

body{
    background-image: url('../bg.jpg');
    background-position:center;
    background-repeat: no-repeat;
}
header{
    position: fixed;
    width: 100%;
    display: flex;
    background-color: #03112b;
    align-items: center;
    justify-content: space-between;
    height: 12vh;
    box-shadow:aqua 0px 1px 7px ;
    z-index: 2;
}
header img{
    padding-left: 20px;
    height: 97.66px; 
    width: 195.31px;
}
header h1{
    font-family: 'Montserrat', sans-serif;
    font-size:25px;
}
h2{
    font-family: 'Montserrat', sans-serif;
    text-align:center;
}
main{
    padding-top: 15vh;
    backdrop-filter: blur(1px);
    position: relative;
    z-index: 1;
    height: 85vh;
}
form{
    margin: 50px auto;
    background-color: #03112bdf;
    width: 60%;
    height: 75%;
    padding-block: 40px;
    border-radius: 7px;
    box-shadow: aqua 0px 0px 10px 1px;
    color: rgba(243, 244, 246, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
}

form h2 {
    text-align: center;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
  }
  
  
  .input-group {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    width: 70%;
    box-sizing: border-box;
  }
  
  .input-group label {
    display: block;
    color: rgba(156, 163, 175, 1);
    margin-bottom: 10px;
  }
  
  .input-group input {
    box-sizing: border-box;
    width: 100%;
    border-radius: 0.375rem;
    border: 1px solid rgba(55, 65, 81, 1);
    outline: 0;
    background-color: rgba(17, 24, 39, 1);
    padding: 0.75rem 1rem;
    color: rgba(243, 244, 246, 1);
  }
  
  .input-group input:focus {
    border-color: aqua;
  }
  
  
button[type=submit]{
    display: block;
    width: 70%;
    background-color: rgba(167, 139, 250, 1);
    padding: 0.75rem;
    text-align: center;
    color: rgba(17, 24, 39, 1);
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
}
button[type=submit]:hover{
    box-shadow: aqua 0px 1px 7px;
}
#wait{
    display: none;
}






