@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');


*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  scroll-behavior: smooth;
}

body{
  text-align: center;
  background-color: #f5f5f5;
  padding-top: 40px;
}
.form{
  background-color: white;
  border: 1px solid #e8e8e8;
  width: 40%;
  margin: 20px auto;
  border-radius: 6px;
  padding-bottom: 30px;
}
.form-title h3{
  color: #119744;
  font-size: 1.8rem;
  font-weight: 500;
  padding-top: 30px;
}
.form-title p{
  color: #555555;
  padding-top: 10px;
}
.form-input .password{
  width: 80%;
  height: 45px;
  padding: 5px 20px;
  margin-top: 25px;
  border: transparent;
  border-radius: 6px;
  background-color: #f5f5f5;
}
.pass{
  width: 80%;
  height: 45px;
  margin-top: 25px;
  border-radius: 6px;
  background-color: #119744;
  border: transparent;
  color: white;
  text-transform: uppercase;
}
.remind{
  background-color: white;
  border: 1px solid #e8e8e8;
  width: 40%;
  margin: 20px auto;
  border-radius: 6px;
  text-align: center;
  padding: 30px 0;
  color: #555555;
}
.remind a{
  text-decoration: none;
  color: #119744;
  font-weight: 500;
}
.form-footer{
 width: 40%;
 margin: 0 auto;
 color: #555555;
}
.form-footer span{
  color: #119744;
}


@media screen and  (max-width: 1024px){
  .form, .remind, .form-footer {
    width: 60%;
  }
}

@media screen and  (max-width: 768px){
  .form, .remind, .form-footer {
    width: 80%;
  }
}

@media screen and  (max-width: 480px){
  .form, .remind, .form-footer {
    width: 95%;
  }
  .form-title p{
    font-size: 0.9rem;
  }
}