*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  overflow: hidden;
}

#animated-bg {
 background: url('https://i.imgur.com/qO6LYDd.gif') no-repeat;
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  z-index: -1;
  filter: blur(3px);
  transform: scale(1.5);
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 550px;
  background: url('https://i.imgur.com/qO6LYDd.gif') no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}


.container .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 58%;
  height: 100%;
  background: transparent;
  padding: 80px;
  color: white;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
}

.content .logo {
  font-size: 30px;
}

.text-sci h2 {
  font-size: 35px;
  line-height: 1;
}

.text-sci h2 span {
  font-size: 20px;
}

.text-sci p {
  font-size: 16px;
  margin: 20px 0;
}

.container .logreg-box {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 58%);
  height: 100%;
}

.logreg-box .form-box {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: transparent;
  backdrop-filter: blur(20px);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  color: white;
}

.form-box h2 {
  font-size: 32px;
  text-align: center;
}

.form-box .input-box {
  position: relative;
  width: 340px;
  height: 50px;
  border-bottom: 2px solid white;
  margin: 30px 0;
}

.input-box input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  color: white;
  font-weight: 500;
  padding-right: 28px;
}

.input-box label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 500;
  pointer-events: none;
  transition: .5s ease;
}

.input-box input:focus~label,
.input-box input:valid~label {
  top: -5px;
}

.input-box .icon {
  position: absolute;
  top: 13px;
  right: 0;
  font-size: 19px;
}

.btn {
  width: 100%;
  height: 45px;
  background: transparent;
  border: 2px solid white;
  outline: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  color: white;
  font-weight: 500;
  box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.form-box .note {
  font-size: 14.5px;
  font-weight: 500;
  text-align: center;
  margin-top: 25px;
}

.input-box {
  margin-bottom: 20px;
  width: 100%;
}

.btn {
  display: block;
  margin: 0 auto;
  padding: 12px 20px;
  font-size: 18px;
}

@media (max-width: 767px) {  
  .container {
    width: 100%;
    height: 100%;
  }

  .container .content {
    width: 100%;
    text-align: center;
    padding: 50px;
    padding-bottom: 300px;
  }

  .container .logreg-box {
    margin-top: 320px;
    width: 100%;
    height: 50%;
  }

  .logreg-box .form-box {
    width: 100%;
  }

  .form-box h2 {
    font-size: 24px;
  }

  .content .logo {
    display: none;
}

  .input-box {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

}
