body.request-support {
  margin: 0;
  font-family: Arial, sans-serif;
  background-image: linear-gradient(
    to bottom,
    #051937,
    #04162d,
    #041322,
    #030e18,
    #04070a
  );
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  box-sizing: border-box;
}

body.request-support .container {
  display: flex;
  max-width: 1000px;
  width: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  overflow: hidden;
  margin: 100px auto 100px auto;
}

body.request-support .image-section {
  flex: 1;
  min-width: 300px;
}

body.request-support .image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.request-support .form-section {
  flex: 1;
  background-color: #0e2a40;
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 300px;
  box-sizing: border-box;
  border-radius: 0;
  box-shadow: none;
}

body.request-support .form-section h2 {
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 8px;
  color: #fff;
  font-weight: bold;
}

body.request-support .form-section h3 {
  font-size: 12px;
  font-weight: normal;
  color: #a0b4c4;
  margin-top: 0;
  margin-bottom: 30px;
  text-transform: uppercase;
}

body.request-support .form-group {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

body.request-support .form-group .input-wrapper {
  flex: 1;
  margin-bottom: 0;
}

body.request-support .input-wrapper {
  margin-bottom: 15px;
}

body.request-support .form-section input[type="text"],
body.request-support .form-section input[type="email"],
body.request-support .form-section input[type="tel"],
body.request-support .form-section textarea,
body.request-support .form-section select {
  width: 100%;
  padding: 12px;
  background-color: #1c3a53;
  border: 1px solid #1c3a53;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  box-shadow: none;
  transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

body.request-support .form-section input[type="text"]:focus,
body.request-support .form-section input[type="email"]:focus,
body.request-support .form-section input[type="tel"]:focus,
body.request-support .form-section textarea:focus,
body.request-support .form-section select:focus {
  outline: none;
  border-color: #7cc5ff;
  background-color: #254863;
  box-shadow: none;
}

body.request-support .form-section select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23a0b4c4%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px 10px;
  padding-right: 30px;
}
body.request-support .form-section select:required:invalid {
  color: #6a89a0;
}
body.request-support .form-section option {
  background-color: #1c3a53;
  color: #fff;
}
body.request-support .form-section option[value=""][disabled] {
  display: none;
}

body.request-support .form-section input[type="text"]::placeholder,
body.request-support .form-section input[type="email"]::placeholder,
body.request-support .form-section input[type="tel"]::placeholder,
body.request-support .form-section textarea::placeholder,
body.request-support .form-section input[type="url"]::placeholder {
  color: #6a89a0;
}

body.request-support .form-section textarea {
  resize: none;
  min-height: 80px;
}

body.request-support .form-section label.file-label {
  display: block;
  padding: 12px;
  background-color: #1c3a53;
  color: #6a89a0;
  border: 1px solid #1c3a53;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  box-shadow: none;
  transition: background-color 0.2s ease-in-out;
}
body.request-support .form-section input[type="file"] {
  display: none;
}
body.request-support .form-section label.file-label:hover {
  background-color: #254863;
}

body.request-support .checkbox-container {
  display: flex;
  align-items: flex-start;
  margin-top: 5px;
}
body.request-support .checkbox-container input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  background-color: #1c3a53;
  border: 1px solid #6a89a0;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  margin-right: 10px;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: none;
}
body.request-support .checkbox-container input[type="checkbox"]:checked {
  background-color: #ff4d4d;
  border-color: #ff4d4d;
  box-shadow: none;
}
body.request-support
  .checkbox-container
  input[type="checkbox"]:checked::before {
  content: "\2713";
  font-size: 14px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}
body.request-support .checkbox-container label {
  font-size: 13px;
  color: #a0b4c4;
  line-height: 1.5;
  cursor: pointer;
}
body.request-support .checkbox-container label a {
  color: #7cc5ff;
  text-decoration: underline;
}
body.request-support .checkbox-container label a:hover {
  color: #fff;
}

body.request-support .form-section button {
  background-color: #ff4d4d;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 10px;
  width: auto;
  display: inline-block;
  box-shadow: none;
  transition: background-color 0.2s ease-in-out;
}
body.request-support .form-section button:hover {
  background-color: #e63939;
  box-shadow: none;
}
body.request-support .form-section button:active {
  background-color: #cc2f2f;
  box-shadow: none;
}

body.request-support .footer {
  margin-top: auto;
}

body.request-support .input-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  margin-bottom: 15px;
}

/* === Responsive Styles === */
@media (max-width: 900px) {
  body.request-support .container {
    margin: 90px auto 40px auto;
    width: 95%;
  }
}

@media (max-width: 768px) {
  body.request-support .container {
    flex-direction: column;
  }
  body.request-support .image-section {
    min-height: 200px;
    max-height: 300px;
  }
  body.request-support .image-section img {
    object-position: center top;
  }
  body.request-support .form-section {
    padding: 30px;
    min-width: 0;
  }
  body.request-support .form-section h2 {
    font-size: 24px;
    margin-bottom: 6px;
  }
  body.request-support .form-section h3 {
    font-size: 11px;
    margin-bottom: 25px;
  }

  /* Make form-group a column on mobile/tablet */
  body.request-support .form-group {
    flex-direction: column;
    gap: 0;
  }
  /* FIX: Add space between vertically stacked input-wrappers inside groups */
  body.request-support .form-group .input-wrapper {
    margin-bottom: 18px;
  }
  body.request-support .form-group .input-wrapper:last-child {
    margin-bottom: 0;
  }

  body.request-support .input-wrapper {
    margin-bottom: 15px;
  }
  body.request-support .form-group .input-wrapper:last-child {
    margin-bottom: 0;
  }
  body.request-support .form-section input[type="text"],
  body.request-support .form-section input[type="email"],
  body.request-support .form-section input[type="tel"],
  body.request-support .form-section textarea,
  body.request-support .form-section select,
  body.request-support .form-section label.file-label {
    padding: 10px 12px;
    font-size: 13px;
  }
  body.request-support .form-section select {
    padding-right: 30px;
    background-position: right 10px center;
  }
  body.request-support .form-section textarea {
    min-height: 70px;
  }
  body.request-support .checkbox-container label {
    font-size: 12px;
  }
  body.request-support .form-section button {
    padding: 10px 20px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  body.request-support .container {
    width: 96%;
    margin: 70px auto 30px auto;
  }
  body.request-support .image-section {
    min-height: 150px;
    max-height: 220px;
  }
  body.request-support .form-section {
    padding: 20px;
  }
  body.request-support .form-section h2 {
    font-size: 20px;
  }
  body.request-support .form-section h3 {
    font-size: 10px;
    margin-bottom: 20px;
  }

  /* FIX: Again, space vertically-stacked input-wrappers in .form-group */
  body.request-support .form-group .input-wrapper {
    margin-bottom: 18px;
  }
  body.request-support .form-group .input-wrapper:last-child {
    margin-bottom: 0;
  }

  body.request-support .input-wrapper,
  body.request-support .form-group {
    margin-bottom: 12px;
  }
  body.request-support .form-group .input-wrapper:last-child {
    margin-bottom: 0;
  }
  body.request-support .form-section input[type="text"],
  body.request-support .form-section input[type="email"],
  body.request-support .form-section input[type="tel"],
  body.request-support .form-section textarea,
  body.request-support .form-section select,
  body.request-support .form-section label.file-label,
  body.request-support .checkbox-container label,
  body.request-support .form-section button {
    font-size: 12px;
  }
  body.request-support .form-section button {
    padding: 10px 16px;
    width: 100%;
    box-sizing: border-box;
  }
  body.request-support .form-section textarea {
    min-height: 60px;
  }
}
