/* Request Modal */
.send-request-panel {
  width: 95%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.send-request-panel .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  border-radius: 12px;
}

.send-request-panel .description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.send-request-panel .title {
  font-family: Ubuntu;
  font-size: 24px;
  font-weight: 400;
  line-height: 31.2px;
  text-align: center;
}

.send-request-panel .title span {
  color: #df0611;
}

.send-request-panel .content {
  display: flex;
  align-items: center;
  gap: 32px;
}

.send-request-panel .register-form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--inner-gap);
}

.send-request-panel .register-form .form {
  display: flex;
}

.send-request-panel .register-form .inputs-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.send-request-panel .register-form input[type="text"] {
  width: 100%;
  min-height: 56px;
  padding: 5px 16px 5px 16px;
  border-radius: var(--border-radius);
  border: 1px solid #BFC0C5;
  font-size: var(--input-font-size);
  font-weight: var(--input-font-weight);
  line-height: var(--input-line-height);
}

.send-request-panel .register-form button {
  order: 3;
  width: 100%;
  height: var(--btn-height-mobile);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border-radius: var(--border-radius);
  border: 1px solid #df0611;
  background-color: #ffffff;
  color: #df0611;
  margin-top: 16px;
  cursor: pointer;
}

.send-request-panel .register-form button.active {
  border: 1px solid #DF0611;
  background-color: #DF0611;
  color: #ffffff;
}

.send-request-panel .register-form button.active:hover {
  border: 1px solid #E71F3D;
  background-color: #E71F3D;
  color: #ffffff;
}

.send-request-panel .register-form button span {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  text-align: center;
}

.send-request-panel .register-form button img {
  display: block;
}

.send-request-panel .personal-data-agreement {
  order: 4;
  gap: 16px;
  margin-top: 14px;
}

.send-request-panel .personal-data-agreement .custom-checkbox {
  display: block;
}

@media (min-width: 1280px) {
  .send-request-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .send-request-panel .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 55px;
    border-radius: 12px;
  }
  
  .send-request-panel .description {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .send-request-panel .title {
    order: 1;
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    text-align: center;
  }

  .send-request-panel .title span {
    color: #353535;
  }

  .send-request-panel .register-form .form {
    order: 2;
  }

  .send-request-panel .content {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  
  .send-request-panel .register-form {
    display: flex;
    flex-wrap: wrap;
    gap: var(--inner-gap);
  }

  .send-request-panel .register-form .inputs-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .send-request-panel .register-form input[type="text"] {
    width: 100%;
    max-width: 250px;
    min-height: 56px;
    padding: 5px 16px 5px 16px;
    border-radius: var(--border-radius);
    font-size: var(--input-font-size);
    font-weight: var(--input-font-weight);
    line-height: var(--input-line-height);
  }
  
  .send-request-panel .register-form button {
    order: 4;
    width: 100%;
    max-width: 260px;
    height: var(--btn-height-mobile);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    border-radius: var(--border-radius);
    margin-top: 0;
    cursor: pointer;
  }
  
  .send-request-panel .register-form button span {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    text-align: center;
  }

  .send-request-panel .register-form button img {
    display: none;
  }
  
  .send-request-panel .personal-data-agreement {
    order: 3;
    max-width: 250px;
    gap: 8px;
    margin-top: 0;
  }
  
  .send-request-panel .personal-data-agreement .custom-checkbox {
    display: block;
  }

  .modal-content {
    width: 760px;
    border-radius: 20px;
  }
}

@media (min-width: 1280px) {
  .register-form input[type="text"],
  .register-form input[type="tel"] {
    max-width: 260px;
  }
}
