  .returns-form {
      margin: 0 auto;
      padding: 2rem;
      max-width: 800px;
      color: #222;
       background: #f08e3417;
    }

    h1 {
      font-size: 1.5rem;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    p {
      line-height: 1.6;
      margin-bottom: 1rem;
      font-size: 1rem;
    }

    #returns-form label {
      display: block;
      margin: 1.5rem 0 0.25rem;
      font-weight: bold;
    }

    input,
    textarea {
      width: 100%;
      padding: 0.6rem;
      font-size: 1rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      box-sizing: border-box;
    }

    textarea {
      min-height: 100px;
      resize: vertical;
    }

    .flex {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
    }

    .flex input {
      width: 100%;
    }


    .confirmation-input{
          display: flex;
          gap: 2rem;
          justify-content: center;
    }

    div.confirmation-input label {
      display: flex;
    align-items: center;
    gap: .5rem;

    }


    /* Modal THANK YOU Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
}

/* Modal Content */
.modal-content-sign-up {
  background-color: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: center;
  animation: fadeInModal 0.3s ease-in-out;
}

@keyframes fadeInModal {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
      position: absolute;
    top: 0rem;
    right: 1rem;
    font-size: 2rem;
    color: #666;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

.modal-close:hover {
  color: #000;
}

.h2-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

/* Message Text */
.h4-text {
  font-size: 1.125rem;
  color: #444;
  line-height: 1.6;
}

#userEmail {
  font-weight: 600;
  color: #f78b1f;
}

