.form-verification {
  background-color: #f5f5f5;
  padding: 20px 100px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media (max-width: 900px) {
  .form-verification {
    padding: 20px;
  }
}

/* Main form area */
.main-page {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  height: 500px;
  overflow: auto;
  position: relative;
}
.main-page .text {
  background-color: rgb(255, 255, 255);
  height: inherit;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px;
}
@media (max-width: 900px) {
  .main-page .text {
    position: static;
  }
}
.main-page .text p {
  font-size: 13px;
  text-align: center;
  color: #3e3e3e;
}
.main-page .text h1 {
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 20px;
}
.main-page .text h1 span {
  color: red;
  font-weight: bold;
}
.main-page form {
  padding: 30px;
}

/* Form fields */
.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #eaeaea;
  border-radius: 4px;
}

/* Submit button */
.btn-submit {
  background-color: #810000;
  color: #ffffff;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-submit:hover {
  background-color: #005bb5;
}

/* Footer */
.copy-footer {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #777;
}

.imgbox .field,
.imgbox .field-container {
  margin-bottom: 10px;
}
.imgbox .field .preview-container,
.imgbox .field-container .preview-container {
  background-image: url("https://static.vecteezy.com/system/resources/thumbnails/036/594/092/small_2x/man-empty-avatar-photo-placeholder-for-social-networks-resumes-forums-and-dating-sites-male-and-female-no-photo-images-for-unfilled-user-profile-free-vector.jpg");
  background-position: center center;
  background-size: cover;
  height: 300px !important;
  width: 100% !important;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 900px) {
  .imgbox .field .preview-container,
  .imgbox .field-container .preview-container {
    width: 300px;
  }
}
@media (max-width: 550px) {
  .imgbox .field .preview-container,
  .imgbox .field-container .preview-container {
    width: 100%;
    height: 250px;
  }
}
.imgbox .field input,
.imgbox .field select,
.imgbox .field-container input,
.imgbox .field-container select {
  width: 100%;
  box-shadow: 1px 1px 10px 1px rgba(48, 48, 48, 0.1607843137);
}
.imgbox .field label,
.imgbox .field-container label {
  margin: 0;
  font-size: 13px;
  color: #000000;
}

@media (max-width: 768px) {
  .flex {
    flex-direction: column;
    align-items: center;
  }
}/*# sourceMappingURL=acc_form.css.map */