.main-frm {
  width: 100%;
  padding: 120px 0;
  background-color: rgba(11, 118, 198, 5%);
}

.main-frm .main-frm__container {
  width: 68.03%;
  margin: 0 auto;
}

.main-frm .main-frm__container h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  color: #013f8f;
}

.main-frm .main-frm__container .form {
  width: 100%;
  background-color: white;
  padding: 70px;
}

.form .center {
  align-items: center;
}
.form .frm-col__message {
  height: 115px;
}
.form .message {
  margin-bottom: 30px !important;
}
.frm-col {
  display: flex;
  position: relative;
  justify-content: space-between;
  margin-bottom: 45px;
}
.frm-col label {
  width: 15%;
  height: 55px;
  line-height: 55px;
  font-size: 16px;
  font-weight: bold;
  color: #013f8f;
}
.frm-col input {
  width: calc(85% - 70px);
  font-size: 18px;
  font-weight: 500;
  outline: none;
  border: 1px solid #b2b2b2;
  display: block;
  padding: 13px 20px;
  background-color: var(--color-white-2);
}
.frm-name {
  width: calc(85% - 70px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.frm-name input {
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  outline: none;
  border: 1px solid #b2b2b2;
  display: block;
  padding: 13px 20px;
  background-color: var(--color-white-2);
}
.frm-col textarea {
  width: calc(85% - 70px);
  font-size: 18px;
  font-weight: 500;
  outline: none;
  border: 1px solid #b2b2b2;
  display: block;
  padding: 13px 20px;
  background-color: var(--color-white-2);
}
.frm-col .error {
  color: red;
  font-weight: 500;
  position: absolute;
  bottom: -25px;
  left: 23%;
}
.frm-btn {
  display: flex;
  justify-content: center;
}
.frm-btn button {
  width: 586px;
  font-size: 30px;
  font-weight: bold;
  outline: none;
  border: none;
  padding: 10px 80px;
  background: linear-gradient(#f6921e, #ec1c24);
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--color-white-2);
  display: flex;
  justify-content: center;
}

.frm-btn button:hover {
  opacity: 0.8;
  transition: opacity 0.2s linear;
}

.frm-btn button img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}
.frm-edit {
  display: block;
  color: initial;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-top: 40px;
}

.frm-edit:hover {
  opacity: 0.8;
  transition: opacity 0.1s linear;
}

.privacy {
  width: 100%;
  text-align: center;
  color: #013f8f;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 20px;
}

.accent-privacy {
  text-decoration: underline;
}

.accept-btn {
  font-weight: bold;
  font-size: 18px;
}

.disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
  background-image: linear-gradient(
    to right,
    rgb(100, 99, 99),
    rgb(100, 99, 99)
  ) !important;
}

.mb-30 {
  margin-bottom: 30px;
}

@media screen and (min-width: 1920px) {
  #frm-contact {
    max-width: 1470px;
  }
}

@media screen and (min-width: 1500px) and (max-width: 1800px) {
  .frm-col label {
    width: 20%;
  }
}

@media screen and (max-width: 430px) {
  #frm-contact {
    display: none;
  }
}
