@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@1,200&family=Roboto:wght@100&display=swap');
* {
      box-sizing: border-box;
}
body {
      background-color: #fff;
      color: #fff;
      font-family:  'Mulish', sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
      overflow: hidden;
      margin: 0;
}
.container {
      background-color: #224bcf;
      padding: 20px 40px;
      border-radius: 10px;
}
.container h1 {
      text-align: center;
      margin-bottom: 30px;
}
.container a {
      text-decoration: none;
      color: lightblue;

}
.btn {
      cursor: pointer;
      display: inline-block;
      width: 100%;
      background: #fa1d86;
      padding: 15px;
      font-family: inherit;
      font-size: 16px;
      border-radius: 5px;
}
.btn:focus {
      outline: 0;
}
.btn:active {
      /* drah uyd hemjees bag zereg oorclgdj butsah */
      transform: scale(0.98);
}
.text {
      margin: 30px;
}
.form-control {
      position: relative;
      margin: 20px 0px 40px;
      width: 300px;
}
.form-control input {
      background-color: transparent;
      border: 0;
      border-bottom: 2px #fff solid;
      display: block;
      width: 100%;
      padding: 15px 5px;
      font-size: 18px;
      color: #fff;
}
.form-control input:focus , .form-control input:valid {
      outline: 0;
      border-bottom-color: lightblue;
}
.form-control label {
      position: absolute;
      top: 22px;
      left: 0;
      pointer-events: none;
}
.form-control label span {
      display: inline-block;
      font-size: 18px;
      min-width: 5px;
      transition: 0.3s cubic-bezier(0.68 , -0.55, 0.265, 0.115);
}
.form-control input:focus + label span,
.form-control input:valid + label span {
      color: lightblue;
      transform: translateY(-30px);
}
