.main-background {
  /* background-color: #18385c; */
 
  /* min-height: 100vh; */
  background-image: url('/img/301.jpg'); 
  background-size: cover;
  background-position: center;
  padding: 80px 10px;
  /* text-align: center; */
  /* color: white; */
}

body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #f5f7f7;
      color: #333;
      padding-top: 40px;
    }

    .container_for_partner {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 40px;
      padding: 50px 20px;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
    }

    .info-box,
    .form-box {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgb(0 0 0 / 0.05);
      flex: 1 1 400px;
      max-width: 600px;
      box-sizing: border-box;
    }

    .info-box h1 {
      margin-top: 0;
      margin-bottom: 20px;
      font-weight: 700;
      font-size: 2rem;
      color: #056991;
    }

    .info-box p {
      font-size: 16px;
      line-height: 1.5;
      margin-bottom: 30px;
      color: #555;
    }

    .info-row {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
    }

    .icon {
      background-color: #f0f0f5;
      color: #056991;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .info-text {
      font-size: 16px;
      color: #333;
    }

    .info-text strong {
      display: block;
      margin-bottom: 3px;
      font-weight: 600;
    }

    .call-center {
      background-color: #056991;
      color: white;
      padding: 20px 30px;
      display: flex;
      align-items: center;
      border-radius: 0 0 10px 10px;
      margin-top: -10px;
      box-sizing: border-box;
      user-select: none;
    }
 
    .call-center .icon {
      background-color: #fff;
      color: #056991;
    }

    .call-center-text {
      margin-left: 15px;
    }

    .call-center-text strong {
      display: block;
      font-size: 14px;
      font-weight: 600;
    }

    .call-center-text span {
      font-weight: 700;
      font-size: 20px;
      letter-spacing: 0.03em;
    }

    form {
      display: flex;
      flex-direction: column;
    }

    label {
      position: absolute;
      left: -9999px;
      /* Скрытые, но доступны для экранных читалок */
    }

    .form-box input,
    .form-box textarea {
      width: 100%;
      padding: 12px 15px;
      margin-bottom: 20px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 14px;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      font-family: inherit;
      color: #333;
    }

    .form-box input:focus,
    .form-box textarea:focus {
      border-color: #056991;
      box-shadow: 0 0 5px #056991(76, 116, 255, 0.5);
      outline: none;
    }

    .form-box textarea {
      resize: vertical;
      min-height: 120px;
    }

    .form-box button {
      background-color: #056991;
      color: white;
      border: none;
      padding: 14px 20px;
      border-radius: 5px;
      font-size: 16px;
      cursor: pointer;
      font-weight: 600;
      transition: background-color 0.3s ease;
    }

    .form-box button:hover,
    .form-box button:focus {
      background-color: #056991;
      outline: none;
    }

    .required-note {
      font-size: 12px;
      color: #888;
      margin-top: -10px;
      margin-bottom: 15px;
      user-select: none;
    }

    .required-note span {
      color: #056991;
      font-weight: 700;
    }

    @media (max-width: 700px) {
      .container_for_partner {
        padding: 30px 15px;
        gap: 30px;
      }
    }

    @media (max-width: 480px) {

      .info-box,
      .form-box {
        max-width: 100%;
        flex: 1 1 100%;
        padding: 25px 20px;
      }
    }