html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Sora, "Kanit", Arial, Helvetica, sans-serif;
  font-weight: 100;
  background-color: #000;
  color: white;
  font-size: 14px;
}
body {
  padding: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  /* background-image: url("/images/bg.jpg");
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover; */
}

body * {
  box-sizing: border-box;
}

#react-div {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  max-height: 100vh;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  margin: 5px;
}
input[type="text"],
input[type="password"],
input[type="number"] {
  font-family: Sora, "Kanit", Arial, Helvetica, sans-serif;
  font-weight: 100;
  font-size: 16px;
  width: 100%;
  padding: 10px 0px 10px 0px;
  margin: 0;
  border-radius: 10px;
}
/* input[type="button"],
input[type="submit"],
input[type="reset"], */
/* button {
  background: rgb(4, 0, 79);
  background: linear-gradient(
    0deg,
    rgba(4, 0, 79, 1) 0%,
    rgba(9, 50, 121, 1) 69%
  );
  border-radius: 5px;
  border: 2px solid #0f0c33;
  color: white;
  padding: 10px 10px;
  text-decoration: none;
  margin: 0;
  cursor: pointer;
  font-size: 18px;
} */
/* input:hover[type=button], input:hover[type=submit], input:hover[type=reset], button:hover {
    background: rgb(4,0,79);
    background: linear-gradient(0deg, rgba(4,0,79,1) 0%, rgb(10, 54, 131) 69%);
} */
a,
a:link,
a:hover,
a:visited,
a:active {
  color: white;
}
.form {
  padding: 80px;
  border-radius: 30px;
  /* background-color: rgba(18, 11, 68); */
  background: rgb(2, 0, 36);
  background: linear-gradient(
    0deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 1) 100%
  );
  border: solid 1px rgba(225, 255, 0, 0.3);
  text-shadow: #000 0px 0 10px;
}
.formTable {
  width: 100%;
}
.flexCenter {
  display: flex;
  justify-content: center;
}
.flexRight {
  display: flex;
  justify-content: flex-end;
}
.flexLeft {
  display: flex;
  justify-content: flex-start;
}

/* ------- */
.form-control {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #4b4b4b;
  font-weight: 300;
  margin-top: 2px;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  font-weight: 200;
  font-size: 16px;
  padding: 5px;
  width: 100%;
  height: 30px;
  max-width: 400px;
}
.form-control-error {
  border: 1px red solid;
  border-radius: 3px;
}
.form-label {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  margin: 10px 0 10px 0;
  font-size: 12px;
}
.form-label-light {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  text-transform: uppercase;
  margin: 10px 0 10px 0;
  font-size: 12px;
}
.text-center {
  text-align: center;
}
.flex-center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.flex-right {
  display: flex;
  justify-content: flex-end;
}
.flex-left {
  display: flex;
  justify-content: flex-start;
}
.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}
.flex-space-in-between {
  display: flex;
  justify-content: space-around;
}
.input-center {
  text-align: center;
}
.pointer {
  cursor: pointer;
}
select {
  height: 45px;
  width: 100%;
  background-color: white;
}
.sep {
  border-bottom: 1px solid #4e4e4e;
  height: 1px;
  width: 100%;
  margin: 10px 0;
}
/* ------- */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; /* Prevent line breaks */
  border: 0;
}
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
      -khtml-user-select: none; /* Konqueror HTML */
        -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

/*Mobile screen*/
@media (max-width: 650px) {
  .form {
    width: 100%;
    padding: 15px;
  }
}
/*Web Screen*/
@media (min-width: 650px) {
  .form {
    width: 650px;
  }
}
