.text-center{
  width: 100%;
  text-align: center;
  display: block;
}
label{
  font-size: 16px;
}
input[type=text] {
  padding: .75rem 5px;
  width: calc(100% - 0px);
  border: 0;
  margin: 0.5rem auto;
  border: none;
  border-bottom: 1px solid #000;
  background-color: transparent;
  color:#000;
}
select {
  padding: .75rem 5px;
  width: calc(100% - 0px);
  border: 0;
  border-radius: 4px;
  margin: 0.5rem auto;
  border: 1px solid #AAAAAA;
  height: 46px;
  background-color: #000000;
  color:#000;
}
textarea{
  padding: 0.75rem 10px;
  width: calc(100% - 20px);
  border: 0;
  margin: 0.5rem 0;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #000;
  color:#000;
}
input[type=checkbox] {
  position: relative;
}
input[type=checkbox]::after {
  content: ' ';
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 4px;
  position: absolute;
  top: -2px;
  left: -3px;
  background-color: #fff;
  text-align: center;
  border: 1px solid #AAAAAA;
}
input[type=checkbox]:checked::after {
  background: #4fa637 url(/assets/images/elem/icon-check.svg) 50% 50% no-repeat;
  border: 1px solid #4fa637;
  background-size: 50%;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #000;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #000;
}
/* button {
  padding: 0.75rem 2rem;
  border: 0;
  background: #000;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: -20px 0 20px 0;
} */
.btn__wrap{
  display: flex;
  justify-content: center;
}
#form p {
  font-size: 0.75rem;
}
.text__error{
  font-size: 14px;
  font-weight: bold;
  color: #f00;
}
.form__name{
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  padding:30px 0 0 0;
}
.form__header{
  font-size: 24px;
  text-align: center;
  padding: 30px 0 30px 0;
}
.bg__form{
  /* background-color: #272732; */
  background-color: #fff;
  color:#000;
}
@media(max-width:1440px){
  .form__header {
    font-size: 25px;
    text-align: center;
    padding: 50px 0 80px 0;
  }
}
@media(max-width:1100px){
  .form__item, .form__administratorInfo ,.form__info{
    font-size:10px;
  }
  .form__item .form__label{
    font-size:12px;
  }
}
@media(max-width:960px){
  textarea{
    width: calc(100% - 20px);
  }
  select{
    width: calc(100% - 20px);
  }
  .form__item {
    padding: 0px;
    width: calc((100% / 2) - 20px);
    margin-right: 20px;
  }
  .form__header {
    font-size: 23px;
    text-align: center;
}
.form__name{
  font-size: 38px;
}
}
@media(max-width:768px){
  .form__header br{
    display: none;
  }
  .form__header{
    padding:30px 15px;
  }
  .form__name{
    font-size: 30px;
  }
}
@media(max-width:600px){
  select{
    width:calc(100% - 0px);
  }
  textarea{
    margin:0 0 20px 0;
    width: calc(100% - 0px);
  }
  .form__item {
    padding: 0px;
    width: 100%;
    margin-right: 0px;
  }
  .form__header {
    font-size: 20px;
}
}
