body {
  width: 100%;
  height: 100%;
  background: url("../images/banner/login-reg-bg.jpg"), #000;
  background-position: center;
  background-size: cover;
}

.wrapper {
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

form {
  display: flex;
  flex-direction: column;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
}

.input-field {
  position: relative;
  border-bottom: 2px solid #ccc;
  margin: 15px 0;
}

.input-field label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #fff;
  font-size: 16px;
  pointer-events: none;
  transition: 0.15s ease;
}

.input-field input {
  width: 100%;
  height: 40px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  color: #fff;
}

.forget {
  display: flex;
  align-items: center;
  justify-content: end;
  margin: 0 0 15px 0;
  color: #f9c94c;
}

#remember {
  accent-color: #fff;
}

.forget label {
  display: flex;
  align-items: center;
}

.forget label p {
  margin-left: 8px;
}

.wrapper a {
  color: #f9c94c;
  text-decoration: none;
}

.wrapper a:hover {
  text-decoration: underline;
}

button {
  background: #fff;
  color: #000;
  font-weight: 600;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 3px;
  font-size: 16px;
  border: 2px solid transparent;
  transition: 0.3s ease;
}

button:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.register {
  text-align: center;
  margin-top: 30px;
  color: #fff;
}

.register-form-logo {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.register-form-logo img {
  height: 80px;
  width: auto;
}

.register-footer-copyrights {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.register-footer-copyrights p {
  color: #fff;
  padding: 0 20px;
  text-align: center;
}

.register-footer-copyrights p a {
  color: #f9c94c;
}

.register-btn {
  width: 100%;
}

/* Hide the placeholder text */
/* input[type="date"]::before {
  content: attr(placeholder);
  color: #999;
  display: block;
} */

/* When a date is entered, hide the placeholder */
/* input[type="date"]:valid::before {
  display: none;
} */

/* For Firefox */
/* input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
} */

input[type="date"] {
  color-scheme: dark;
}

.input-field input:focus~label,
.input-field input.not-empty~label {
  font-size: 0.8rem;
  top: 10px;
  transform: translateY(-120%);
}


.input-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  color: #fff;
}

.input-field textarea:focus~label,
.input-field textarea.not-empty~label {
  font-size: 0.8rem;
  top: 10px;
  transform: translateY(-120%);
}

.input-field select {
  width: 100%;
  height: 40px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  color: #fff;
}

.input-field select option {
  color: #000;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 9999s ease-in-out 0s;
  -webkit-text-fill-color: #fff;
}

.register-validation {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.register-validation ul {
  list-style: none;
  padding-left: 1rem;
}
.go-back
{
  text-align: end;
}
.go-back a
{
  color: #fff;
}
.go-back i
{
  margin-right: 5px;
}
@media only screen and (min-width:320px) and (max-width:768px) {
  body {
    display: block;
  }

  body .register-form-logo {
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    margin-top: 0;
  }

  body::before {
    height: 150vh;
  }

  .register-form-logo img {
    height: 54px;
    width: auto;
  }

  .wrapper {
    margin-top: 0;
  }
}

@media only screen and (min-width:769px) and (max-width:990px) {
  body {
    display: block;
  }

  body .register-form-logo {
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    position: relative;
    top: inherit;
  }

  .register-form-logo img {
    height: 54px;
    width: auto;
  }

  .wrapper {
    margin-top: 0;
  }
}