@font-face {
  font-family: play;
  src: url(../fonts/PlaywriteHU-VariableFont_wght.ttf);
}

@font-face {
  font-family: tektur;
  src: url(../fonts/Tektur-VariableFont_wdth\,wght.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.col-sm-4 {
  display: flex;
  justify-content: center;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.login-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 440px;
  height: 480px;
  padding: 30px;
}

.login-header {
  text-align: center;
  margin: 20px 0 40px 0;
  font-family: play;
}

.login-header header {
  color: #333;
  font-size: 40px;
  font-weight: 600;
}

.input-box .input-field {
  width: 100%;
  height: 60px;
  font-size: 17px;
  padding: 0 25px;
  margin-bottom: 15px;
  border-radius: 30px;
  border: none;
  box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.05);
  outline: none;
  transition: .3s;
  font-family: tektur;
}

::placeholder {
  font-weight: 500;
  color: #222;
}

.input-field:focus {
  width: 105%;
}

.input-submit {
  position: relative;
}

.submit-btn {
  width: 100%;
  height: 60px;
  background: #222;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: .3s;
}

.input-submit label {
  position: absolute;
  top: 45%;
  left: 50%;
  color: #fff;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
  font-family: tektur;
}

.submit-btn:hover {
  background: #000;
  transform: scale(1.05, 1);
}

img {
  width: 95%;
  height: 100%;
}

.forgot {
  font-size: 14px;
  margin-bottom: 15px;
}

.forgot a {
  text-decoration: none;
  color: #555;
}

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

.info {
  color: red;
  text-align: center;
  font-weight: 600;
}