/*Styling signup page*/
@font-face {
    font-family: montLight;
    src: url('../fonts/montLight.otf') format('opentype');
    font-weight: normal;
  }

  @font-face {
    font-family: montHeavy;
    src: url('../fonts/montHeavy.otf') format('opentype');
    font-weight: normal;
  }

  @font-face {
    font-family: montRegular;
    src: url('../fonts/montRegular.otf') format('opentype');
    font-weight: normal;
  }

  @font-face {
    font-family: montBold;
    src: url('../fonts/montBold.otf') format('opentype');
    font-weight: normal;
  }

  @font-face {
    font-family: montSemiBold;
    src: url('../fonts/montSemibold.otf') format('opentype');
    font-weight: normal;
  }

  body{
    font-family: montRegular;
    background-color: #31a099;
    justify-items: center;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .main-container{
    display: flex;
    flex-direction: column;
    margin-top: 170px;
  }

  .main-container img{
    height: auto;
    max-width:200px;
    align-self: center;
  }

  h2{
    font-family: montBold;
    font-size: 20pt;
    text-align: center;
    color: #fff;}

  h1{
    font-family: montRegular;
    font-size: 40pt;
    text-align: left;
    color: #EDED88;
    margin-top: 0 auto;
    margin-left: 50px;
    margin-bottom: -20px;
  }

  input[type=text], input[type=email], input[type=password], input[type=tel], input[type=number], input[type=date], input[type=month], input[type=week], input[type=time] {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    margin-bottom: 10px;
    align-self: center;
}

input[type=submit]{
  width: 150%;
    height: 50px;
    padding: 10px 20px;
    margin-bottom: 10px;
    border: none;
    border-radius: 25px;
    background-color: #273f3c;
    color: #EDED88;
    font-family: montBold;
    cursor: pointer;
    align-self: center;
}

input[type=submit]:hover{
    background-color: #EDED88;
    color: #273f3c;
    font-family: montBold;
    cursor: pointer;
}

.login-form-reset input[type=email]{
  width: 100%;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 30px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.login-form-reset input[type=submit]{
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  margin-bottom: 10px;
  border: none;
  border-radius: 25px;
  background-color: #273f3c;
  color: #EDED88;
  font-family: montBold;
  cursor: pointer;
}

.login-form-reset input[type=submit]:hover{
    background-color: #EDED88;
    color: #273f3c;
    font-family: montBold;
    cursor: pointer;
}

.main-container h3{
    font-family: montBold;
    font-size: 20pt;
    color: #fff;
    margin-top: -40px;

}

p{
    font-family: montRegular;
    color: #fff;
    font-size: 9pt;
    text-align: center;
}

a{
    text-decoration: none;
    color: #EDED88;
    font-family: montBold;
    cursor: pointer;
}

.login-form{
    display: flex;
    flex-direction: column;
    align-self: center;
    margin-left: -100px;
}

.reset-button{
  width: 100%;
}


@media (max-width: 768px){
  .main-container{
    width: 90%;
    margin-top: 50px;
    text-align: center;
  }

  img{
    height: auto;
    width: 100%;
    margin-left: 0;
    margin-bottom: -10px;
    align-self: center;
  }

  h1{
    font-size: 30pt;
    margin-left: 0;
    margin-bottom: -10px;
  }

  h2{
    font-size: 16pt;
    margin-top: -20px;
    margin-left: 0;
  }

  input[type=text], input[type=email], input[type=password], input[type=tel], input[type=number], input[type=date], input[type=month], input[type=week], input[type=time] {
    width: 100%;
  }

  input[type=submit]{
    width: 150%;
  }

  p{
    margin-left: 50px;
  } 
}