/* glass main */
.contact-shell {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

/* form card */
.form-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

/* inputs */
.field {
  width: 100%;
  height: 52px;
  padding: 0 18px 0 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
}

.field:focus {
  outline: none;
  border-color: #33c3f2;
}

.textarea {
  width: 100%;
  min-height: 140px;
  border-radius: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* button */
.submit-btn {
  background: linear-gradient(90deg, #2a6eb7, #33c3f2);
  color: white;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

/* left overlay */
.image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 18, 29, 0.2),
    rgba(14, 18, 29, 0.7)
  );
}
