body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #fafafb;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding-top: 80px; /* ← увеличено с 40px */
    box-sizing: border-box;
}
.pay_body {
    padding-bottom: 20px;
}
.form-container {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}
.form-container p {
    display: flex;
    justify-content: space-between;
}
.form-container h2 {
    margin-bottom: 36px;
    color: #000000;
}
.form-container input,
.form-container textarea {
    width: 370px;;
    padding: 15px;
    margin: 10px 0;
    border: none;
    background: #f2f2f2;
    border-radius: 15px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    resize: none;
}
.form-container button {
    background-color: #E91E63;
    color: #fff;
    border: none;
    padding: 15px;
    width: 100%;
    border-radius: 15px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.form-container button:hover {
    background-color: #d81b60;
}
.logo {
    margin-top: 36px;
    margin-bottom: 0px;
}
.slogan.font-body-small.hidden-xl {
    margin-left: 24px;
    color: #7a8086;
    width: 200px;
    flex-shrink: 0;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
}
.logo-kzto {
    display: flex;
    max-width: 100%;
    height: 78px;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.logo-kzto svg {
    width: 80px;
    height: 80px;
}
.link-sert {
    font-size: 12px;
    color: #545454;
    border-bottom: 1px dashed #666666;
    top: -2px;
    position: relative;
    text-decoration: none;
}
.text-pay {
    color: #7a8086;
    font-size: 14px;
    margin-top: 24px;
    line-height: 20px;
}
@media (max-width: 480px) {
  .form-container {
    padding: 24px 16px;
  }

  .form-container input,
  .form-container textarea {
    width: 100%;
  }

  .slogan.font-body-small.hidden-xl {
    width: auto;
    margin-left: 12px;
    font-size: 13px;
    line-height: 18px;
  }

  .logo-kzto {
    flex-direction: column;
    height: auto;
  }

  .logo-kzto svg {
    width: 60px;
    height: 60px;
  }
}
