* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'raleway', 'Open Sans', sans-serif;
}

body {
  overflow-y: scroll;
}

section {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  /* background: linear-gradient(to bottom, #f7f7fe, #dff1ff); */
  /* overflow-y: scroll; */
}

section .colour {
  position: absolute;
  filter: blur(150px);
}

section .colour:nth-child(1) {
  top: -150px;
  width: 200px;
  height: 200px;
  /* background: ; */
}

section .colour:nth-child(2) {
  left: 100px;
  width: 500px;
  height: 500px;
  bottom: -100px;
  background: orange;
}

section .colour:nth-child(3) {
  right: 100px;
  bottom: 50px;
  width: 300px;
  height: 300px;
  background: teal;
}

.box {
  position: relative;
}

.box .square {
  position: absolute;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.1);
  animation-delay: calc(-1s * var(--i));
  animation: animate 10s linear infinite;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes animate {

  0%,
  100% {
    transform: translateY(-10px);
  }

  50% {
    transform: translateY(10px);
  }
}

.box .square:nth-child(1) {
  top: -50px;
  left: -60px;
  width: 100px;
  height: 100px;
}

.box .square:nth-child(2) {
  z-index: 2;
  top: 150px;
  left: -100px;
  width: 120px;
  height: 120px;
}

.box .square:nth-child(3) {
  z-index: 2;
  width: 80px;
  height: 80px;
  right: -50px;
  bottom: -60px;
}

.box .square:nth-child(4) {
  left: 100px;
  width: 50px;
  height: 50px;
  bottom: -80px;
}

.box .square:nth-child(5) {
  top: -80px;
  left: 140px;
  width: 60px;
  height: 60px;
}

.container,
.login-container {
  width: 950px;
  min-width: 800px;
  display: flex;
  min-height: 500px;
  position: relative;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 25px;
}

.login-container {
  width: 600px !important;
  min-width: 450px;
}

.form {
  width: 100%;
  height: 100%;
  padding: 40px;
  position: relative;
}

.required-inputs {
  display: flex;
  flex-direction: row;
  column-gap: 10px;
  row-gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 100%;
  height: 100%;
}

.form h2 {
  color: #121212;
  font-size: 24px;
  font-weight: 600;
  position: relative;
  letter-spacing: 1px;
  margin-bottom: 40px;
  text-align: center;
}

.form h2::before {
  /* left: 290px; */
  width: 40px;
  border-radius: 10px;
  height: 3px;
  content: "";
  bottom: -10px;
  background: #121212;
  position: absolute;
}

.form h5 {
  text-align: center;
  font-weight: normal;
  font-size: 1rem;
}

.form-radio {
  margin: 20px -10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.form-radio input {
  width: 0;
  height: 0;
  position: absolute;
  left: -9999px;
}

.form-radio input+label {
  margin: 0 8px;
  padding: 11px 31px;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  border: solid 2px #ebebeb;
  background-color: #FFF;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  text-align: center;
  transition: border-color .15s ease-out, color .25s ease-out, background-color .15s ease-out, box-shadow .15s ease-out;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
}

.form-radio input:checked+label {
  background-color: #1A4957;
  color: #FFF;
  border-color: #1A4957;
  z-index: 1;
}

.form-radio input:focus+label {
  outline: none;
}

.form-radio input:hover {
  background-color: #ff8c11;
  color: #FFF;
  border-color: #ff8c11;
}

.form .input__box {
  min-width: 200px;
  width: 250px;
  height: 50px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 5px 20px;
  letter-spacing: 1px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  /* border: 1px solid rgba(255, 255, 255, 0.5); */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}



.form .input__box__login {
  width: 100%;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 5px 20px;
  letter-spacing: 1px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.input__box__login input::placeholder,
.input__box input::placeholder {
  font-size: 0.9rem;
}

.register-btn,
.login-btn {
  width: 90% !important;
  color: #FFFFFF;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 10px 20px;
  margin-top: 2rem;
  letter-spacing: 1px;
  background: #1A4957;
  border-radius: 10px;
  align-self: center;
}

.register-btn:hover,
.login-btn:hover {
  background: #1a4957ec;
  color: #FAAA46;
  cursor: pointer;
}

.form .input__box input {
  width: 100%;
  color: #121212;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 10px 20px;
  letter-spacing: 1px;
  background: transparent;
  /* border-radius: 10px; */
  /* border: 1px solid rgba(255, 255, 255, 0.5); */
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
  /* border-right: 1px solid rgba(255, 255, 255, 0.2); */
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
}

.form .input__box__login input {
  width: 100%;
  color: #121212;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 10px 20px;
  letter-spacing: 1px;
  background: transparent;
}

.form .input__box select {
  width: 100%;
  color: #121212;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 10px 20px;
  letter-spacing: 1px;
  background: transparent;
}

.form::placeholder {
  color: #ededed;
}

.form .input__box input[type="submit"],
.form .input__box__login input[type="submit"] {
  color: white;
  cursor: pointer;
  background: #1A4957;
  /* max-width: 100px; */
  font-weight: 600;
  margin-bottom: 20px;
  border-radius: 7px !important;
  display: block;
}

.forget {
  color: #004343;
  margin-top: 15px;
  margin-right: 40px;
  text-align: right;
  display: block;
}

.forget a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.login-account-alternative {
  height: 50px;
  margin-top: 3rem;
}

.login-alternative {
  font-size: 0.8rem;
}

.login-alternative a {
  text-decoration: none;
  color: teal;
}

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


.required-inputs-login {
  width: 100% !important;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 5px 20px;
  letter-spacing: 1px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  /* border: 1px solid rgba(255, 255, 255, 0.5); */
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
}

.login-btn {
  margin-top: 2rem;
}

.login__form__elements,
.register__form__elements {
  display: flex;
  flex-direction: column;
}

/* fix register button alignment */
.customer-data,
.merchant-data {
  width: 100%;
  max-width: 950px;
  min-width: 400px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* fix register and fix login */
.fixing-error-display {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
}

.fix-registration-login-error {
  font-size: 0.7rem;
  font-weight: 600;
}

.forgot-password {
  color: #121212 !important;
  text-decoration: none;
  text-align: right;
  font-size: 0.89rem;
}

.forgot-password:hover {
  text-decoration: underline;
  color: #1A4957 !important;
}

.login-input-label {
  align-self: flex-start;
  margin-top: 15px;
  margin-bottom: -6px;
  margin-left: 4px;
  font-size: 0.9rem;
}

.create-quick-account-label {
  font-size: 0.95rem;
  margin-top: 15px;
  margin-bottom: -3px;
  margin-left: 4px;
}

.register-input-label {
  font-size: 0.9rem;
  margin-bottom: -5px;
}

@media screen and (max-width: 425px) {
  .box .square {
    display: none;
  }

  section .colour:nth-child(1) {
    width: 60px;
  }

  section .colour:nth-child(2) {
    width: 50px;
    top: 0px;
    bottom: 0px;
  }

  .container,
  .login-container {
    backdrop-filter: none;
    width: 400px !important;
    min-width: 300px;
  }

  .customer-data,
  .merchant-data {
    max-width: 100vw;
    min-width: 300px;
  }

  .form {
    width: 100%;
  }

  .container {
    width: 100%;
    min-width: 90%;
  }

  .login-form {
    width: 100vw;
  }

}

@media screen and (min-width: 426px) and (max-width: 768px) {

  .register-btn {
    /* width: 79% !important; */
  }

  section .colour:nth-child(1) {
    width: 60px;
  }

  section .colour:nth-child(2) {
    width: 50px;
    top: 0px;
    bottom: 0px;
  }

  .container,
  .login-container {
    backdrop-filter: none;
    width: 600px !important;
    min-width: 300px;
  }

  .customer-data,
  .merchant-data {
    max-width: 100vw;
    min-width: 500px;
  }

  .form {
    width: 100%;
  }

  .container {
    width: 100%;
    min-width: 90%;
  }

  .login-form {
    width: 100vw;
  }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
  section .colour:nth-child(1) {
    width: 60px;
  }

  section .colour:nth-child(2) {
    width: 50px;
    top: 200px;
    bottom: 0px;
  }

  section .colour:nth-child(3) {
    bottom: 400px;
  }

  .container,
  .login-container {
    backdrop-filter: none;
  }

}

@media screen and (min-width: 993px) and (max-width: 1200px) {
  section .colour:nth-child(1) {
    width: 60px;
  }

  section .colour:nth-child(2) {
    width: 50px;
    top: 200px;
    bottom: 0px;
  }

  section .colour:nth-child(3) {
    bottom: 400px;
  }

  .container,
  .login-container {
    backdrop-filter: none;
  }

}