@import url("https://fonts.googleapis.com/css?family=Lato:400,700");

:root {
  --primaryColor: #164435;
  --lightColor: #effbf7;
  --mainWhite: #fff;
  --mainDark: #0d3125;
  --mainGrey: #646262;
  --mainGold: #c57a09;
  --mainSpacing: 0.1rem;
  --mainTransition: all 0.3s linear;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.signin{
  width: 100%;
  position: absolute;
  top: 0;
  padding-top: 80px;
  background-color: var(--lightColor);
}
.auth-wrapper{
  height: 600px;
  width: 40%;
  margin: auto;
  margin-top: 60px;
  padding: 40px 10px;
  text-align: center;
  background-color: var(--mainWhite);
  border-radius: 10px;
  box-shadow: 13px 10px 47px 2px rgba(199,199,199,1);
}
.auth-wrapper label{
  display: block;
  margin-top: 20px;
  margin-left: 65px;
  font-size: 20px;
  text-align: left;
}
.auth-wrapper input{
  height: 50px;
  width: 300px;
  padding: 15px;
  border: none;
  border: var(--primaryColor) 1px solid;
  border-radius: 10px;
}
.auth-wrapper button{
  display: block;
  margin: auto;
  margin-top: 40px;
  width: 200px;
  height: 45px;
  background-color: var(--mainGold);
  border: none;
  border-radius: 10px;
}
.authForm-footer{
  margin-top: 120px;
}
.authForm-footer a{
  text-decoration: none;
  color: var(--mainGold);
}
.authForm-footer a:hover{
  color: var(--mainGrey);
}
.authForm-footer .forgetPass{
  float: left;
  padding: 15px;
  font-weight: 300;
}
.authForm-footer span{
  float: right;
  padding: 15px;
  font-weight: 300;
}

/* Responsive styling 
  ////////////////////
  ///////////////////
*/
@media(max-width:600px){
  .auth-wrapper{
    width: 100%;
    height: 650px;
  }
  .auth-wrapper label{
    font-size: 20px;
    margin-left: 30px;
  }
  .auth-wrapper input{
    width: 300px;
    height: 50px;
  }
  .authForm-footer{
    text-align: center;
  }
  .forgetPass{
    float: none;
    display: block;
  }
  .authForm-footer a{
    display: block;
  }
}