@font-face {
  font-family: "UKNumberPlate";
  src: url('/assets/fonts/UKNumberPlate.ttf') format('ttf');
  src: url('/assets/fonts/UKNumberPlate.woff2') format('woff2');
}

* {
  margin: 0;
  padding: 0;
  /* box-sizing: border-box; */
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: rgb(31 31 31);
  color: rgb(233 233 233);
}

.container {
  max-width: 1200px;
  margin: 20px auto;
}

form {}

form label,
form input,
form select,
form button {
  display: block;
  width: 100%;
}

form input,
form select,
form button {
  border-radius: 5px;
  color: rgb(31 31 31);
  margin: 20px auto;
  box-sizing: border-box;
}

form button {
  padding: 20px;
  font-size: 1rem;
  font-weight: bold;
  background: rgb(31 31 31);
  color: rgb(233 233 233);
  border: 1px solid rgb(233 233 233);
}

form button:hover {
  cursor: pointer;
}

form .floating-label {
  position: relative;
}

form .floating-label input {
  padding: 20px 14px 10px 14px;
  font-size: 1rem;
}

form select {
  padding: 10px 10px 10px 10px;
  font-size: 1rem;
}

form .floating-label label {
  width: auto;
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
  color: rgb(31 31 31);
}

form .floating-label input:not(:placeholder-shown)~label,
form .floating-label input:focus~label {
  position: absolute;
  top: 6px;
  font-size: 0.6rem;
}

form .form-feedback .form-feedback-error,
form .form-feedback .form-feedback-success {
  border-radius: 5px;
  padding: 10px;
  margin: 10px 0px;

}

form .form-feedback .form-feedback-error {
  background: rgb(255 71 71);
}

form .form-feedback .form-feedback-success {
  background: rgb(116 243 113);
}

form .radio-icons {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
}

form .radio-icons label {
  display: contents;
}

form .radio-icons i {
  font-size: 4rem;
  margin: 5px 5px;
  display: block;
  width: 100%;
}

form .radio-icons [type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

form .radio-icons [type=radio]+div {
  cursor: pointer;
  background: rgb(0 0 0 / 45%);
  border-radius: 5px;
  border: 2px solid rgb(0 0 0);
  color: rgb(233 233 233);
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: all 0.2s ease-in-out;
}

form .radio-icons [type=radio]:checked+div {
  background: rgb(0 188 255 / 11%);
  border: 2px solid rgb(0 188 255);
}

form .registration-group {}

form .registration-group input {
  background: #ffdc00;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: normal;
  font-style: normal;
  font-family: "UKNumberPlate", Arial, Helvetica, sans-serif;
}

form .floating-label.registration-group label {
  top: 25px;
}

.inputs-advanced {
  max-height: 0px;
  transition: all 0.5s ease-in-out;
  overflow-y: hidden;
}

.inputs-advanced.active {
  max-height: 800px;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {}



/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  form .radio-icons i {
    font-size: 2.5rem;
  }

  form .radio-icons [type=radio]+div {
    width: 120px;
    height: 120px;
    gap: 10px;
  }
}

/* `lg` applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {}

/* `xl` applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {}

/* `xxl` applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {}