/* =====================================================
   BACKGROUND WRAPPER
===================================================== */
.background-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.background-gif-icon {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.navy-darkening-fx {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 43, 86, 0.8);
  z-index: -1;
}

/* =====================================================
   APPLY FORM
===================================================== */
.apply-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
  padding: 40px 0 60px 0;
  z-index: 1;
}

.apply-form-box {
  width: 100%;
  max-width: 700px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  padding: 40px 50px;
}

/* Header */
.logo-only-icon {
  display: block;
  margin: 0 auto 15px;
  height: 60px;
  width: 60px;
}

.apply-title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  color: #0d2b56;
  margin-bottom: 8px;
}

.apply-subtitle {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

/* Form Fields */
form label {
  display: block;
  font-weight: 500;
  color: #0d2b56;
  margin-bottom: 6px;
  margin-top: 14px;
}

form input[type="text"],
form input[type="file"],
form input[type="email"],
form select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
}

form input:focus,
form select:focus {
  border-color: #1a3e6e;
  box-shadow: 0 0 5px rgba(26, 62, 110, 0.3);
}

/* Grouped Inputs */
.contact-group,
.address-group {
  display: flex;
  gap: 10px;
}

.contact-group input,
.address-group input {
  flex: 1;
}

/* Submit Button */
.apply-btn {
  margin-top: 25px;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #e94e1b;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.apply-btn:hover {
  background-color: #ffb400;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-group,
  .address-group {
    flex-direction: column;
  }

  .apply-container {
    margin-top: 25px;
    padding: 0 15px;
  }

  .apply-form-box {
    padding: 30px 25px;
  }
}
