* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
/*  font-family: monospace;*/
}



body {
  background-color:#fbfbfd;
  
}

.body{
  display: flex;
  min-height: 80vh;
  justify-content: center;
  align-items: center;
}


#main {
  max-width: 100%;
  width: 350px;
  background: #eee;
  border-radius: 15px;

}


#tab-btn {
  display: flex;

}
.login-tab,
.register-tab {
  text-decoration: none;
  display: inline-block;
  width:100%;
  background-color: #eee;
  text-align: center;
  color: #000;
  font-size: 18px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 20px;
  margin-right: 20px;
  margin-left: 20px;
  margin-top: 15px;

}
.active {
  background-color: #ee4b3a;
  color: #fff;
}

.login-tab:hover{
  text-decoration: none;
  color: #fff;
}

.register-tab:hover{
  text-decoration: none;
  color: #000;
}

.login-box,
.register-box {
  width: 100%;
  background-color: #eee;
  padding: 20px 30px 30px 30px;
  box-shadow: 10px 15px 25px #d3d3d3;
  border-radius: 15px;

}
.register-box {
  display: none;
}
.inp {
  width: 100%;
  padding: 7px;
  margin-bottom: 15px;
  font-size: 17px;
  border: 1px solid #C2C2C2;
  background-color: #fff;
  color: #666;
  border-radius: 10px;
}
.inp:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(81, 203, 238, 1);
  border: 1px solid rgba(81, 203, 238, 1);

}
.sub-btn {
  width: 100%;
  padding: 8px;
  border: none;
  font-size: 16px;
  font-weight: 400;
  background: #ee4b3a;
  color: #fff;
  cursor: pointer;
  border-bottom: 0px solid #444;
  border-radius: 10px;
}
.sub-btn:focus {
  outline: none;

}

.sub-btn:hover{
  background:#22525e;
}
.sub-btn:active {
  border: none;
  margin-top: 5px;
}
#forgot {
  font-size: 14px;
  color: #444;
  text-align: center;
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
}
h2 {
  text-align: center;
  padding-bottom: 15px;
  font-variant: small-caps;
  color: #333;
  font-size: 16px;
}

/*.font-user { 
            position: relative; 
        } 
          
.font-user i{ 
            position: absolute; 
            left: 10px; 
            top: 10px; 
            color:gray;
            font-size: 16px; 
        } 

input::placeholder {
    padding-left: 25px;
}*/


#reset{
  border-radius: 10px;
  display: block;

}

#enter{
    display: block;
    text-align: center;
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: -5px;
    color: #22525e;
}






























