@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body{
  background: #699F6EB8;
}
/* form-layout style */
.form-wrapper{
  background: #244000;
  height: auto;
  width: 50%;
  margin: 0 auto;
  margin-top: 5em;
  border-radius: 10px;
  color: #fff;
}
.form-wrapper{
  margin-bottom: 2.5em;
}
.account{
  text-align: center;
  padding: 1em;
}
input{
  margin-bottom: .9em;
  margin-top: .9em;
}
input[type=text],
input[type=number]
{
  padding: 1em;
  width: 500px;
  border: none;
  border-radius: 10px;
  outline: none;
}
/* logo */
.nav-logo{
  display: flex;
  justify-content: center;
  margin-bottom: -4em;
}
label{
  font-size: 26px;
}
/* form */
.form-content{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.footer-content{
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}
.acct-btn {
  padding: 1em 3em;
  background-color: #A8D75C;
  border: none;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  font-weight: bold;
  margin-top: .9em;
  margin-bottom: 2em;
}
.acct-btn:hover{
  opacity: .7;
}
sup{
  color: red;
  margin-left: .1em;
}
/* back-btn */
.back-btn{
  background-color: #A8D75C;
  padding: 1em 2em;
  border: none;
  border-radius: 10px;
  margin: 1em 1em;
}
.back-btn:hover{
  opacity: .7;
}
.back-btn a{
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}
@media only screen and (max-width: 400px){
  /* form-layout style */
.form-wrapper{
  background: #244000;
  height: auto;
  width: 70%;
  margin-bottom: 10px;
  }
  .account{
    text-align: center;
    padding: 1em;
    font-size: 18px;
  }
  .logo{
    width: 120px;
  }
  .footer-content{
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
  }
  /* Inner input */
  input[type=text],
   input[type=number]
{
  padding: .6em;
  width: 200px;
  border: none;
  border-radius: 10px;
  outline: none;
  display: block;
  margin: 0 auto;
}
label{
  font-size: 14px;
}
}
/* ipadMini screen size 768px  */
@media only screen and (max-width: 768px){
  /* form-layout style */
  .form-wrapper{
    background: #244000;
    height: auto;
    width: 80%;
    margin-bottom: 10px;
  }
  label{
    font-size: 16px;
  }
  sup{
    color: #fff;
    margin-left: .1em;
  }
}

/* ipad Air 4 */
@media only screen and (max-width: 820px){
  /* form-layout style */
  .form-wrapper{
    background: #244000;
    height: auto;
    width: 80%;
    margin-bottom: 10px;
  }
  label{
    font-size: 16px;
  }
  sup{
    color: #fff;
    margin-left: .1em;
  }
}
/* ipad PRO 11 */
@media only screen and (max-width: 838px){
  /* form-layout style */
  .form-wrapper{
    background: #244000;
    height: auto;
    width: 80%;
    margin-bottom: 10px;
  }
  label{
    font-size: 16px;
  }
  sup{
    color: #fff;
    margin-left: .1em;
  }
}