.page-container {
  max-width: 1440px;
  margin: 0 auto;
  background-color: var(--color-background);
  overflow: hidden;
}


.site-header-banner img {
  display: block;
  width: 100%;
  height: auto;
}



.form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 64px 20px 64px;
  box-sizing: border-box;
}

.change-password-form {
  background-color: var(--color-surface);
  border-radius: 25px;
  box-shadow: 1px 2px 4.4px 0px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 869px;
  padding: 110px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.form-title {
  color: var(--color-primary);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 48px;
  line-height: 56.35px;
  text-align: center;
  margin: 0;
  margin-bottom: 19px; /* (5252 - (5149 + 56)) - 28px form gap */
}

.input-group {
  background-color: var(--color-surface);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
  border-radius: 25px;
  box-shadow: 1px 2px 22.5px 0px rgba(15, 118, 110, 0.25);
  width: 497px;
  max-width: 90%;
  height: 70px;
  box-sizing: border-box;
}

.input-icon {
  width: 24px;
  height: 20px;
  flex-shrink: 0;
}

.input-group input {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: #333;
  border: none;
  outline: none;
  background-color: transparent;
  width: 100%;
  height: 100%;
}

.input-group input::placeholder {
  color: var(--color-text-placeholder);
  opacity: 1;
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    border: none;
    border-radius: 35px;
    padding: 5px 20px;
    cursor: pointer;
    text-align: center;
    box-shadow: 1px 2px 22.5px 0px rgba(15, 118, 110, 0.25);
    transition: background-color 0.3s;
    width: 50%;
    margin: 10px auto;
}

.submit-button:hover {
    background-color: #0c635b;
}

@media (max-width: 900px) {
  .form-section {
    padding: 80px 20px;
  }
  .change-password-form {
    padding: 60px 20px;
    max-width: 90%;
  }
  .input-group, .submit-button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .form-section {
    padding: 40px 15px;
  }
  .change-password-form {
    padding: 40px 20px;
    gap: 20px;
  }
  .form-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .input-group {
    height: 60px;
  }
  .submit-button {
    height: 56px;
  }
}