/*
 Theme Name: Hello Elementor Child
 Template: hello-elementor
 Version: 1.0
*/

/* ===== Custom Password Form Styling with Vertical Center ===== */
/* Wrapper that holds the H1 + intro + form */
.custom-password-wrap {
  max-width: 640px;
  margin: 60px auto 60px;  /* balanced spacing above/below */
  text-align: center;
  padding: 0 16px;         /* small side padding for mobile */
}

/* H1 title (from the page ID mapping) */
.custom-password-wrap .password-title {
  font-size: clamp(28px, 4.5vw, 40px);  /* responsive H1 size */
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 14px;
  color: #111;
  white-space: nowrap;
}

/* Standard line below the H1 */
.custom-password-wrap .password-intro {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin: 0 0 18px;
}

/* Form layout */
.custom-password-form { margin: 0; }

.custom-password-form .password-field-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;          /* space between label, input, button */
  flex-wrap: wrap;    /* wraps nicely on small screens */
}

/* Label */
.custom-password-form label {
  font-size: 16px;
  white-space: nowrap;
}

/* Password input */
.custom-password-form input[type="password"] {
  height: 44px;
  padding: 0 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 260px;
  box-sizing: border-box;
}

/* Submit button */
.custom-password-form button {
  height: 44px;
  background-color: #EAB1C4; /* your pink */
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0 18px;
  font-size: 16px;
  cursor: pointer;
  transition: background .2s ease-in-out;
}
.custom-password-form button:hover {
  background-color: #d78aa5;
}

/* Mobile: stack neatly */
@media (max-width: 480px) {
  .custom-password-form .password-field-wrapper {
    gap: 8px;
  }
  .custom-password-form input[type="password"],
  .custom-password-form button {
    width: 100%;
  }
}

