* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  background: #dde1e7;
}

button {
  margin: 15px 0;
  width: 100%;
  height: 50px;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  background: #dde1e7;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 25px;
  box-shadow: 2px 2px 5px #babecc, -5px -5px 10px #ffffff73;
}
button:hover {
  color: #6D6875;
  box-shadow: inset 2px 2px 5px #babecc, inset -5px -5px 10px #ffffff73;
}

.signup {
  font-size: 16px;
  color: #0D0D0D;
  margin: 10px 0;
}
.signup a {
  color: #000;
  text-decoration: none;
}
.signup a:hover {
  font-weight: bolder;
}

.content {
  width: 330px;
  background: #dde1e7;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: -3px -3px 7px #ffffff73, 2px 2px 5px rgba(94, 104, 121, 0.288);
}
.content .text {
  font-size: 33px;
  font-weight: 600;
  margin-bottom: 35px;
  color: #000;
}
.content .field {
  height: 50px;
  width: 100%;
  display: flex;
  position: relative;
}
.content .field input {
  height: 100%;
  width: 100%;
  padding-left: 45px;
  font-size: 18px;
  outline: none;
  border: none;
  color: #595959;
  background: #dde1e7;
  border-radius: 25px;
  box-shadow: inset 2px 2px 5px #babecc, inset -5px -5px 10px #ffffff73;
}
.content .field input:focus ~ label {
  box-shadow: inset 2px 2px 5px #babecc, inset -1px -1px 2px #ffffff73;
}
.content .field input:focus ~ label {
  opacity: 0;
}
.content .field:nth-child(2) {
  margin-top: 20px;
}
.content .field span {
  position: absolute;
  width: 50px;
  line-height: 50px;
  color: #0D0D0D;
}
.content .field label {
  position: absolute;
  top: 50%;
  left: 45px;
  pointer-events: none;
  color: #0D0D0D;
  transform: translateY(-50%);
}

.forgot-pass {
  text-align: left;
  margin: 10px 0 10px 5px;
}
.forgot-pass a {
  font-size: 16px;
  color: #93A603;
  text-decoration: none;
}
.forgot-pass a:hover {
  font-weight: bolder;
}

/*# sourceMappingURL=custom.css.map */
