@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(78, 132, 232);
}

::-moz-selection {
  color: #fff;
  background: rgb(56, 117, 232);
}

::selection {
  color: #fff;
  background: rgb(56, 117, 232);
}

.wrapper {
  width: 380px;
  padding: 40px 30px 50px 30px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.1);
}

.wrapper header {
  font-size: 35px;
  font-weight: 600;
}

.wrapper form {
  margin: 40px 0;
}

form .field {
  width: 100%;
  margin-bottom: 20px;
  margin-top: 20px
}

form .field.shake {
  animation: shake 0.3s ease-in-out;
}

@keyframes shake {
  0%, 100% {
    margin-left: 0px;
  }
  20%, 80% {
    margin-left: -12px;
  }
  40%, 60% {
    margin-left: 12px;
  }
}
form .field .input-area {
  height: 50px;
  width: 100%;
  position: relative;
}

form input {
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 45px;
  font-size: 18px;
  background: none;
  caret-color: rgb(56, 117, 232);
  border-radius: 5px;
  border: 1px solid #bfbfbf;
  border-bottom-width: 2px;
  transition: all 0.2s ease;
}
.sumit-btn {
  width: 320px;
  height: 50px;
  background: rgb(56, 117, 232);
  border: 0;
  border-radius: 5px;
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
  padding: 0px 10px;
}

form .field input:focus,
form .field.valid input {
  border-color: rgb(56, 117, 232);
}

form .field.shake input,
form .field.error input {
  border-color: #dc3545;
}

.field .input-area i {
  position: absolute;
  top: 50%;
  font-size: 18px;
  pointer-events: none;
  transform: translateY(-50%);
}

.input-area .icon {
  left: 15px;
  color: #bfbfbf;
  transition: color 0.2s ease;
}

.input-area .error-icon {
  right: 15px;
  color: #dc3545;
}

form input:focus ~ .icon,
form .field.valid .icon {
  color: rgb(56, 117, 232);
}

form .field.shake input:focus ~ .icon,
form .field.error input:focus ~ .icon {
  color: #bfbfbf;
}

form input::-moz-placeholder {
  color: #bfbfbf;
  font-size: 17px;
}

form input::placeholder {
  color: #bfbfbf;
  font-size: 17px;
}

form .field .error-txt {
  color: #dc3545;
  text-align: left;
  margin-top: 5px;
}

form .field .error {
  display: none;
}

form .field.shake .error,
form .field.error .error {
  display: block;
}

form .pass-txt {
  text-align: left;
  margin-top: 20px;
}

.wrapper a {
  color: rgb(56, 117, 232);
  text-decoration: none;
}

.wrapper a:hover {
  text-decoration: underline;
}

form input[type=submit] {
  height: 50px;
  margin-top: 10px;
  color: #fff;
  padding: 0;
  border: none;
  background: rgb(56, 117, 232);
  cursor: pointer;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

form input[type=submit]:hover {
  background: #2c52ed;
}

.btn {
  height: 35px;
  background: rgb(56, 117, 232);
  border: 0;
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
  padding: 0px 10px;
}

.nav {
  background: #fff;
}

#logoImg {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100px;
  height: 100px;
  z-index: 1;
  margin-top: 15px;
  margin-left: 40px;
}/*# sourceMappingURL=style.css.map */
.checkNum {
  display:none;
}
.checkNum .timer {
  position: absolute;
  top: 50%;
  right: 45px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #bfbfbf;
}