*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  text-align: center;
}

:root{
  font-size: 62.5%;
}

body{
  background: linear-gradient(315deg, #C2E9FB 0%, #A1C4FD 100%);
  height: 100vh;

  display: grid;
  place-items: center;
}

header{
  padding: 1rem;
  background:#34355B;

  margin: 0 auto;

  border-radius: .9rem;

  position: fixed;
  top: 1rem;
  right: 1rem;
}

header a{
  text-decoration: none;
  color: #fff;
}

main{
  width: min(42.8rem, 80%);

  box-shadow: 0 .2rem .4rem rgba(0 ,0 ,0 , 0.8);

  background-color: rgba(255, 255, 255, 0.856);

  border-radius: .6rem;

  padding: 4.8rem 6.4rem 6.4rem;
  margin-top: -1.2rem;

}

/* Section 1*/

.hide{
  display: none;
}

.screen1 > h1{
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color:  #34355B;
}

.screen1 > p{

  color:  #34355B;
  opacity: 0.8;

  font-size: 1.6rem;
  font-weight: 400;
  line-height:  2.6px;

  margin: 1.6rem auto 4.8rem;

}


.screen1 > p , .screen1 > input , button , .screen2 h2{
  font-family: 'DM Sans', sans-serif;
}

input{
  width: 6rem;

  background-color: #DCE2E9;
  color: #34355B;

  font-weight: 400;

  border-radius: .4rem  0  0  .4rem ;
}

#FirstInput::-webkit-inner-spin-button, #FirstInput::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; 
}

input , button{
  padding: 1.6rem;

  border: 0;

  font-size: 1.6rem;
  width: 6rem;
}

button{ 
  color: #fff;

  background:#7879F1;

  padding:  1.6rem;
  margin-right: 0;

  font-weight: 700;

  border-radius: 0 .4rem .4rem 0;

  cursor: pointer;

  transition: Background .3s;
}

button:hover{
  box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.8);
  background:#3c3c97;

  filter: brightness(0.94);

}

form{
  margin-bottom: 6,4rem;

  display: flex;
  justify-content: center;
}

/* screen 2*/

/*
.screen2{
  display: none;
}

*/
.screen2 h2{

  color: #34355B;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 3.6rem;

}
.screen2 button{
  padding: 1.6rem;
  margin-top: 3.6rem;

  color: #fff;
  background-color: #7879F1;
  font-size: 1.6rem;
  font-weight: 700;

  border-radius: .4rem;

  width: fit-content;

}


