@charset "UTF-8";

.formLayout .box_red {
  display: none;
}

/* general fromm form */
form.frommForm input,
form.frommForm textarea {
  width: 45%;
  font-size: 16px;
  line-height: 24px;
  padding: 2px 2px 2px 8px;
  margin-right: 20px;
  margin-bottom: 20px;
  outline-offset: -5px;
}
form.frommForm input:focus,
form.frommForm textarea:focus {
  outline: 2px solid #00000065;
}
form.frommForm input.fill,
form.frommForm textarea.fill {
  width: 95%;
}
form.frommForm input[type="checkbox"],
form.frommForm input[type="radio"] {
  width: 18px;
  margin-right: 0;
}
form.frommForm .submit {
  display: flex;
}
form.frommForm input[type="submit"] {
  margin-left: auto;
  width: 150px;
  background-color: #FF0505;
  color: white;
  font-weight: bold;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}
form.frommForm textarea {
  height: 100px;
  font-family: Arial, Helvetica, SunSans-Regular, Sans-Serif;
}
@media only screen and (max-width: 800px) {
  form.frommForm input {
    width: 95%;
    margin-right: 0;
  }
}

/* registration form */
form.frommForm .registration .partner {
  border-left: solid 3px red;
  margin-bottom: 20px;
}
form.frommForm .registration .partner .partnerData {
  margin-left: 35px;
}
form.frommForm .submit label {
  margin-left: 5px;
}
