@import url('https://fonts.googleapis.com/css2?family=Poppins');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
}

body{
background: rgb(86,226,255);
background: -moz-linear-gradient(155deg, rgb(53, 221, 255) 0%, rgba(238,254,255,1) 80%);
background: -webkit-linear-gradient(155deg, rgb(53, 221, 255,1) 0%, rgba(238,254,255,1) 80%);
background: linear-gradient(155deg, rgb(53, 221, 255,1) 0%, rgba(238,254,255,1) 80%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#56e2ff",endColorstr="#eefeff",GradientType=1);
background-repeat: no-repeat;
background-size: cover;
min-height: 100dvh;
}

.heading{
    text-align: center;
    margin: 1rem;
}

.form-container{
    margin: auto;
    background-color: rgb(238, 238, 238);
    max-width: 40rem;
    border-radius: 1rem;
    padding-top: 1rem;
    box-shadow: 1px 1px 5px 0px rgb(160, 160, 160);
}
.form{
    display: flex;
    justify-content: space-evenly;
}

label{
    font-size: 0.8rem;
}
input,select{
    height: 2rem;
    width:15rem;
    border-radius: 0.3rem;
    border: 1px solid rgb(187, 187, 187);
    padding-left: 0.5rem;
    margin:0 0 0.8rem 0;
}

button{
    background-color: rgb(37, 212, 37);
    border:none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    color:white;
    border-radius: 0.5rem;
    cursor: pointer;
}
button:active{
    background-color: rgb(22, 190, 22);
}
.instruction{
    padding:0 0 1rem 0;
    text-align: center;
}
.warning{
    color:red;
    font-size: 0.8rem;
}
.bottom{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 0.5rem;
    padding-bottom: 1rem;
}
.links{
  display: flex;
  justify-content:space-evenly;
  margin:2rem;
}
a{
    text-decoration: none;
}
h2{
    font-size: 1.3rem;
    color: rgb(41, 184, 41);
    text-shadow: 1px  1px rgb(61, 112, 37);
    
}
@media screen and (max-width:660px){
   .form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  } 
  .form-container{
    max-width: 90%;
  }
  input,select{
    height: 2.2rem;
    width: 17rem;
    border-radius: 0.4rem;
}
.bottom{
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
    padding-bottom: 1rem;
}
button{
    margin-top: 1rem;
}
.warning{
    max-width: 15rem;
    text-align: center;
}
}
