.main-container{
    height: 100vh;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.tip-her-contactus-wrp{
    background-image: url(../../images/background_img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: auto;
    height: 100vh;
}

.contact-section {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  height: calc(100% - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  /* background: rgba(0, 0, 0, 0.7);  */
}

.contact-section h2 {
  font-size: 44px;
  color: #d5a4f2;
  margin-bottom: 20px;
  text-align: left;
}

/* input:invalid, textarea:invalid {
  border-bottom: 2px solid red !important;
}
input:focus:valid, textarea:focus:valid {
  border-bottom: 2px solid #00f0ff;
} */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-row {
  display: flex;
  gap: 10px;
}

.input-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 10px;
  color: #A3FAFF;
  font-size: 20px;
  outline: none;
  transition: border-color 0.3s;
  background-image: url('../../images/border-bottom.png');
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% 2px;
}

/* .contact-form input[type="tel"] {
  padding-left: 40px;
} */


.contact-form input:focus,
.contact-form textarea:focus {
  background-image: url('../../images/border-bottom.png'), linear-gradient(to right, #00f0ff, #00f0ff);
  background-size: 100% 2px, 0 2px;
  background-repeat: no-repeat;
  background-position: bottom left, bottom left;
}


.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form button {
  margin-top: 10px;
  background: none;
  border: none;
  color: #e0f7ff;
  font-size: 24px;
  font-weight: bold;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  text-shadow: 0 0 5px #00f0ff, 0 0 3px #00f0ff;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.contact-form button:hover {
  transform: scale(1.05);
  text-shadow: 0 0 8px #00f0ff, 0 0 5px #00f0ff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #A3FAFF; /* or any color you prefer */
  opacity: 1;  /* ensures full opacity */
}

input:-webkit-autofill,
textarea:-webkit-autofill {
  background-color: transparent !important;
  /* color: #A3FAFF !important; */
  -webkit-box-shadow: 0 0 0 1000px #A3FAFF inset !important;
  /* text-shadow: 0 0 0 #00f0ff; */
}


/* 🔄 RESPONSIVE */
@media (max-width: 768px) {
  .contact-form .input-row {
    flex-direction: column;
  }

  .contact-section {
    width: 90%;
    padding: 10px;
  }

  .contact-section h2 {
    font-size: 32px;
  }

  .contact-form button {
    font-size: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 18px;
  }
}