.form {
  padding: 2% 0;
  width: 60%;
  margin: 0 auto;
  display: none;
}
.form__title {
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2%;
}
.form__agreement {
  font-size: 0.9rem;
  margin-top: 2%;
}
.form__msg {
  text-align: center;
  margin: 2% 0;
  font-size: 1.5rem;
}

.inputs {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.inputs__item {
  width: calc((100% / 4) - 1%);
}
.inputs__title {
  color: #8E8E8E;
  font-size: .9rem;
  margin-bottom: 1%;
}
.inputs__input {
  width: 100%;
  border: 2px solid #8E8E8E;
  height: 40px;
  padding: 5px;
}


.file {
  position: relative;
  width: 100%;
  background: #EBEBEB;
  border: 2px dashed #8E8E8E;
  padding: 3%;
  margin-top: 2%;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.file--error {
  border: 2px dashed #f00;
}

.file__text {
  margin-right: 2%;
}
.file__error {
  display: none;
  width: 100%;
  text-align: center;
  margin-bottom: 2%;
  color: red;
  font-size: .9rem;
}
.file__wrapper {
  text-align: center;
  width: 200px;
}
.file__label {
  position: relative;
  z-index: 0;
  display: inline-block;
  width: 100%;
  background: #01204c;
  cursor: pointer;
  color: #fff;
  padding: 10px 0;
  font-size: .8rem;

  border-radius: 200px 200px 200px 200px;
  text-align: center;
}

.file__upload {
  display: inline-block;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

.file__agreement {
  margin-top: 2%;
  width: 100%;
  color: #8E8E8E;
  font-size: .7rem;
}
.form__agreement--small {
  margin-top: 1%;
  font-size: .6rem;
}

.file-name {
  display: none;
  flex-direction: row;
  align-items: center;
}
.file-name__cancel {
  position: absolute;
  top: 2px;
  right: 10px;
  cursor: pointer;
}
.file-name--show {
  display: flex!important;
}
.file-name__img {
  margin-right: 10px;
}


@media only screen and (max-width: 900px) {
  .form {
    width: 90%;
  }
  .inputs__item {
    width: 100%;
  }
  .file__text {
    margin-right: 2%;
    font-size: .8rem;
    margin-bottom: 5%;
  }
  .form__agreement {
    font-size: 0.6rem;
  }
}




.c-form-accept {
  display: flex;
  flex-direction: column-reverse;
  margin-top: 2%;
  width: 100%;
}
.c-form-checkboxInput {
  position: absolute;
  left: -1000px;
}
.c-form-label {
  width: 100%;
  display: inline-block;
  cursor: pointer;
}
.c-form-checkbox {
  margin-right: 10px;
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid #8E8E8E;
  float: left;
  position: relative;
}
.c-form-label p {
  color: #000;
  padding-left: 40px;
  font-size: 0.9rem;
}
.c-form-checkboxInput:checked~label .c-form-checkbox:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #01204c;
  background-size: 100% 100%;
}
