*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture, svg, video, canvas {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition: none;
  }
}
body, html {
  height: 100%;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

html {
  height: auto;
}

body {
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  height: 100%;
}

ul, ol {
  list-style-position: inside;
}

.wrap {
  background-color: #000000;
  background-image: url("/html-version/pages/casino-form/resources/images/casino-bg.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-grow: 1;
  height: 100%;
  overflow: scroll;
  min-height: 100vh;
  display: flex;
}
@media screen and (max-width: 768px) {
  .wrap {
    background-image: url("/html-version/pages/casino-form/resources/images/casino-bg-mobile.webp");
    background-position: top center;
    background-size: 248px auto;
    padding-top: 100px;
  }
}
.wrap .main {
  display: flex;
  padding: 10px;
  justify-content: end;
  align-items: center;
  flex-grow: 1;
}
.wrap .form-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 520px;
  padding: 50px 25px 25px;
  background-color: #FFFFFF;
  border-radius: 10px;
  margin: auto 0;
}
.wrap .form-section .form-title {
  font-size: 26px;
  font-weight: 500;
  font-family: "Oswald", Sans-serif;
  line-height: 100%;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .wrap .form-section {
    padding: 20px;
  }
  .wrap .form-section .form-title {
    font-size: 21px;
    line-height: 26px;
  }
}
.wrap .form-section .form-fields {
  width: 100%;
}
.wrap .form-section #form-wrap {
  width: 100%;
}
.wrap .form-section #form {
  padding: 20px;
}
.wrap .form-section #form .input-error {
  font-size: 13px;
  color: #dc3232;
}
.wrap .form-section #form #response-message {
  font-family: "Roboto", sans-serif;
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2;
  font-size: 18px;
}
.wrap .form-section #form #response-message.failure {
  border-color: #ffb900;
}
.wrap .form-section #form .form-row {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.wrap .form-section #form .form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
.wrap .form-section #form #show-pass {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-50%);
  cursor: pointer;
}
.wrap .form-section #form input {
  outline: none;
}
.wrap .form-section #form label {
  display: flex;
  flex-direction: column;
  position: relative;
}
.wrap .form-section #form label .red {
  color: #FF0000;
}
.wrap .form-section #form .form-group {
  display: flex;
  gap: 10px;
}
.wrap .form-section #form input, .wrap .form-section #form select {
  width: 100%;
  height: 55px !important;
  padding: 10px;
  margin-bottom: 0px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 0.8em;
  max-width: 100%;
  color: #334471;
  text-align: center;
  background-color: #fafafa;
}
.wrap .form-section #form .submit {
  background-image: linear-gradient(90deg, #93291e, #ed213a);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 0.8em;
  cursor: pointer;
  width: 100%;
  color: #FFFFFF;
  font-weight: 600 !important;
  height: 60px;
}
.wrap .form-section #form .submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.wrap .form-section #form .submit:disabled:hover {
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .wrap .form-section #form {
    padding: 0;
  }
  .wrap .form-section #form .form-group {
    flex-direction: column;
    gap: 20px;
  }
}
