input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder {
  color: #fff;
  opacity: 1 !important;
}

/* Login */

.body-reg {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #000;
}

.login-content {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.login {
  text-align: center;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.login-logo {
  position: relative;
  float: left;
  width: 80px;
  text-align: center;
  font-family: September W00 Bold;
  font-size: 127px;
  background-image: linear-gradient(-90deg,#0074e8 10%,#008ce8 25%,#009bcb 50%,#00a4a0 75%,#141414 100%);
  background-size: auto auto;
  background-clip: border-box;
  background-size: 150% auto;
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 5s linear infinite;
  line-height: 42px;
  height: 69px;
  margin-top: 48px;
}

@keyframes textclip {
  to {
    background-position: 300% center;
  }
}

.login-text {
  font-size: 15px;
  margin-top: 15px;
  line-height: 22px;
  text-align: center;
  width: 100%;
  float: left;
  color: #ffffff;
}

.login-text a {
  text-decoration: none;
  color: #00c4ff;
  font-weight: 500;
}

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

.login-box {
  width: 384px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
.login-form {
  width: 1240px;
  height: 780px;
  grid-template-columns: repeat(2, 1fr);
  display: grid;
}
.input-box {
  position: relative;
  float: left;
  width: 100%;
}
.login-reset-link {
  float: left;
  width: 100%;
  position: relative;
  line-height: 46px;
  border-radius: 23px;
  transition: 0.3s;
  background-color: #fff;
  color: #000;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  margin-top: 15px;transition: 0.3s;
  text-align: center;
}

.error-message
{
  float: left;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s;
  width: 100%;
}

.error-message.active
{
  max-height: 100px;
  opacity: 1;
  margin-top: 7px;
  color: red;
  font-size: 15px;
}

.back-link
{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: 0.3s;
  background-color: #222;
  position: absolute;
  left: 0;
  background-image: url(../img/back2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}


.login-title {
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 24px;
  margin-top: 15px;
  line-height: 34px;
  width: 100%;
  text-align: center;
  position: relative;
  float: left;
  color: #fff;
  font-family: September W00 Bold;
}

.login-input {
  background-color: transparent !important;
  box-sizing: border-box;
  color: #fff;
  float: left;
  font-weight: 400;
  height: 46px;
  line-height: 46px;
  position: relative;
  width: 100%;
  border: 1px solid #222;
  border-radius: 23px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 15px;
}

.login-button {
  width: 100%;
  line-height: 46px;
  border-radius: 23px;
  transition: 0.3s;
  background-color: #0074e8;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  font-weight: 400;
}

.login-button:hover {}

.input-box {
  width: 100%;
  margin-bottom: 15px;
}
.input-box p {
  width: 100%;
  color: #000;
  font-weight: 400;
  text-align: left;
  font-size: 15px;
  margin-bottom: 7px;
}

/* Login end */


@media screen and (max-width: 540px) {
.body-reg {align-items: baseline;height: auto;}
.login-box {
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
  
  }
}