:root {
  --blue: #02274c;
  --placeholder: #02274c20;
  --inputbg: rgba(2, 39, 76, 0.05);
  --inputselected: rgba(2, 39, 76, 0.15);
  --black: #000000;
}

@font-face {
  font-family: Font;
  src: url(Font.ttf);
}

html {
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Font, sans-serif;
  font-style: normal;
}

body {
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

main {
  width: 100%;
  height: 100%;
  padding: 60px;
  max-width: 1280px;
}

::-webkit-scrollbar {
  width: 16px;
}

::-webkit-scrollbar-track {
  background: rgba(2, 39, 76, 0.1);
}

::-webkit-scrollbar-thumb {
  background: #178cca;
}

#FormContainer select,
#FormContainer option,
#FormContainer input {
  width: 100%;
  font-size: 14px;
  line-height: 1.6em;
  font-weight: 400;
  color: var(--blue);
  background: var(--inputbg);
  border: none;
  outline: none;
  padding: 5px 20px;
}

#FormContainer select {
  background-color: var(--inputselected);
  appearance: none;
  background-image: url(select.svg);
  background-position: 90% 50%;
  background-repeat: no-repeat;
}

#FormContainer input::placeholder {
  color: var(--placeholder);
}

#FormContainer input[type="number"] {
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.RowContainer {
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
  padding: 0px 90px;
}

.InputContainer {
  display: flex;
  flex-direction: column;
}

.Half {
  width: 50%;
}

#FormContainer label {
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 5px;
}

#Check-01 {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
  column-gap: 10px;
  margin-bottom: 20px;
  margin-top: 60px;
}

#Check-01 #ConsentStatus {
  width: 0px;
  height: 0px;
  opacity: 0;
}

#Check-01 label {
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2em;
  opacity: 0.5;
  margin: 0;
}

.CheckMark {
  height: 20px;
  width: 30px;
  background-color: #d9d9d9;
  position: relative;
  display: inline;
}

.CheckMark:after {
  content: "";
  position: absolute;
  display: none;
}

#Check-01 #ConsentStatus:checked ~ .CheckMark:after {
  display: block;
}

#Check-01 #ConsentStatus:checked ~ .CheckMark {
  background-color: #2196f3;
}

.CheckMark:after {
  position: absolute;
  left: 50%;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg) translateX(-50%);
}

.SubmitContainer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.SubmitContainer button {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2em;
  padding: 10px 20px;
  border-radius: 100px;
  background: #3aab49;
  border: none;
  outline: none;
  color: #ffffff;
  transition: all 0.5s;
}

.SubmitContainer button:disabled {
  background: red;
}

#Input-01 {
  width: calc(15% - 15px);
}

#Input-02 {
  width: calc(35% - 15px);
}

#Input-08 {
  width: 50%;
}

#Input-09 {
  width: 40%;
}

#Input-09 input {
  background: var(--inputselected);
}

#Row-01,
#Row-03 {
  margin-bottom: 20px;
}

#Row-04 {
  margin-bottom: 90px;
}

.Warning {
  font-size: 12px;
  line-height: 1.2em;
  font-weight: 400;
  color: red;
  margin: 10px 0px 10px 0px;
}

.Info {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4em;
  color: var(--black);
  margin: 15px 0px;
}

.Info span {
  font-weight: 700;
}

.Title {
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2em;
}

#Info-01 {
  margin-bottom: 70px;
}

#FirstInfo {
  margin-bottom: 60px;
}

@media only screen and (max-width: 1024px) {
  main {
    padding: 40px;
  }

  .RowContainer {
    padding: 0;
  }
  #Input-01,
  #Input-02,
  #Input-08,
  #Input-09 {
    width: 50%;
  }

  #Row-04,
  #Info-01 {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 500px) {
  main {
    padding: 20px;
  }

  .RowContainer {
    padding: unset;
    flex-direction: column;
    margin: unset;
    column-gap: unset;
  }

  #Input-02,
  #Input-08,
  #Input-09 {
    width: 100%;
  }

  #Input-01 {
    width: 40%;
  }

  .Half {
    width: 100%;
  }

  #Row-01,
  #Row-03 {
    margin: unset;
  }

  .InputContainer {
    margin-bottom: 10px;
  }

  #FormContainer label {
    font-size: 14px;
  }

  .Info {
    font-size: 14px;
  }
}


.alert {
  width: 100%;
  padding: 12px 16px;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  margin-bottom: 12px;
  font-size: 16px;
}

.alert.alert-success {
  background-color: rgba(227, 253, 235, 1);
  border-color: rgba(38, 179, 3, 1);
  color: rgba(60, 118, 61, 1);
}