

    /* =========== GENERAL =========== */

    .user {
      display: block;
      width: 100%;
      background-color: #000000;
    }

.user_bg {
  position: relative;
  overflow: hidden;         /* обрезаем фон по границам */
  background: none; 
  background-color: #000000;
      height: 821.5px;
}

.user_bg::before {
  content: "";
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/bg.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  /* если нужен тот же размер, что и раньше */
  background-size: 2000px 821.5px;
  transform-origin: center;
  animation: breathe_user 10s ease-in-out infinite alternate;
  pointer-events: none;     /* клики будут «сквозь» */
     position: absolute;
     z-index: 0;
}

@keyframes breathe_user {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0.9;
    transform: scale(1.1);
  }
}

 
    .user_inner {
      display: flex;
      justify-content: space-between;  /* Размещение элементов по краям */
      align-items: center;
      max-width: 1154px;  /* Максимальная ширина */
      height: 100%;
      margin: 0 auto;  /* Центрируем по горизонтали */
      box-sizing: border-box;  /* Включаем отступы в расчет размера */
          position: relative;    /* нужен для правильного положения bg.jpg под контентом */
    }
    
    /* Добавляем отступы слева и справа, но не изменяем ширину */
    @media (max-width: 1154px) {
      .user_inner {
        margin-left: 40px;  /* Отступ слева */
        margin-right: 40px;  /* Отступ справа */
      }
    }

    
    a:link { text-decoration: none; }
    a:visited { text-decoration: none; }
    a:hover { text-decoration: none; }
    a:active { text-decoration: none; }
    


    /* =========== LEFT =========== */

    .user_left {
      display: flex;
      align-items: center; /* Центрируем элементы по вертикали */
    }

    .user_left_cont {
      display: flex;
      flex-direction: column; 
      max-width: 460px;
    }
    
    .user_left_headline {
      text-align: left;
      font-family: Helvetica, sans-serif; 
      font-weight: bold;
      font-size: 40px;
      color: #ffffff;
      line-height: 47px;
      margin-bottom: 24px;
    }

    .user_left_features {
      display: flex;
      flex-direction: row; 
      gap: 12px;
         padding-left: 5px;
    }

    .user_feat_ico img {
      width: 24.5px;
      height: 24.5px;
    }

    .user_feat_txt {
      display: flex;
      flex-direction: column; 
    }

    .user_feat_txt_title {
      text-align: left;
      font-family: Helvetica, sans-serif; 
      font-weight: bold;
      font-size: 21px;
      color: #ffffff;
      margin-bottom: 9px;
    }

    .user_feat_txt_descr {
      text-align: left;
      font-family: Helvetica, sans-serif; 
      font-weight: normal;
      font-size: 16.5px;
      color: #ffffff;
      line-height: 25px;
      margin-bottom: 20px;
    }



    /* =========== RIGHT =========== */

    .user_right {
      display: flex;
      align-items: top;   /* по вертикали внутри строки */
      justify-content: center; /* по горизонтали */
      background-color: #ffffff;
      border-radius: 12px;
      width: 559px;
      height: 698px;
        flex-shrink: 0;     /* звпрет на сжиатие */
    }

    .user_form {
      display: flex;
      flex-direction: column; 
      width: 450px;
      height: auto;
    }

    .user_form_title {
      text-align: center;
      font-family: Helvetica, sans-serif; 
      font-weight: bold;
      font-size: 22.5px;
      color: #000000;
      margin-top: 39px;
      margin-bottom: 13px;
    }

    .user_form_descr {
      text-align: center;
      font-family: Helvetica, sans-serif; 
      font-weight: normal;
      font-size: 17px;
      color: #000000;
      line-height: 24px;
      margin-bottom: 20px;
    }

    .user_form_input_title {
      text-align: left;
      font-family: Helvetica, sans-serif; 
      font-weight: bold;
      font-size: 14px;
      color: #000000;
      margin-bottom: 6px;
    }


         /* ======  Input  ======  */

         .user_form_input {
            display: flex;
            width: 450px;
            height: 46px;
            background-color: #ffffff;
            border-radius: 9px;
            border: solid #000000 1px;
         }

        .user_form_input input[type="email"] {
            width: 450px;
            height: 46px;
            font-family: Helvetica, Arial, sans-serif;
            font-size: 16px;
            padding-left: 16px;
            box-sizing: border-box;
            margin-right: 0px;
            border: none;    /* Скрываем границу */
            border-radius: 20px;
        }

        .user_form_input input[type="email"]::placeholder {
            font-family: Helvetica, Arial, sans-serif;
            font-size: 16px;
            font-style: normal;
            color: #888888;
        }

        .user_form_input input[type="email"]:focus {
            outline: none;  /* Убирает синюю обводку формы */
        }


         /* ======  Button  ======  */

.user_form_input_btn button {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;   /* по вертикали внутри строки */
  justify-content: center; /* по горизонтали */
            width: 450px;
            height: 44px;
    background: #000000;
    border: none;
    border-radius: 9px;
      text-align: center;
      font-family: Helvetica, sans-serif; 
      font-weight: bold;
      font-size: 15px;
      color: #ffffff;
      text-decoration: none !important;
    cursor: pointer;
      /* два свойства для плавного перехода фона и цвета текста */
      transition: background-color 0.3s ease, color 0.3s ease;
      overflow: hidden;
            margin-top: 17px;
            margin-bottom: 17px;
}

    .user_form_input_btn button:hover {
      background-color: #ff2626;
      color: #ffffff;
    }


         /* ======  Or  ======  */

.user_form_or {
  width: 450px;                   
  overflow: hidden;               
  display: flex;                  
  flex-direction: row; 
  flex-wrap: nowrap;              /* не даём переноситься */
  align-items: center;            
  justify-content: center;        
  gap: 7px;                      
}

.user_form_or_line {
  width: 220px;
  height: 1px;
  background-color: #e1e1e1;   
}

.user_form_or_text {
  font-family: Helvetica, sans-serif;
  font-size: 13px;
  font-weight: normal;
  white-space: nowrap;            /* чтобы текст не переносился */
      margin-top: -2px;  /* Центрируем положение текста относительно полосок */
}


         /* ======  Legal  ======  */

.user_form_legal {
      text-align: center;
      font-family: Helvetica, sans-serif; 
      font-weight: normal;
      font-size: 13px;
      line-height: 21px;
      color: #000000;
      margin-top: 12px;
      margin-bottom: 18px;
}

.user_form_legal a {
      color: #000000;
      text-decoration: underline;
}

.user_form_legal a:hover {
      color: #000000;
      text-decoration: none;
}
    
         /* ======  Button Soc  ======  */


.user_form_btn_soc {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;   /* по вертикали внутри строки */
  justify-content: center; /* по горизонтали */
    width: 450px;
    height: 44px;
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 9px;
      text-align: center;
      font-family: Helvetica, sans-serif; 
      font-weight: bold;
      font-size: 15px;
      color: #000000;
      text-decoration: none !important;
    cursor: pointer;
      /* два свойства для плавного перехода фона и цвета текста */
      transition: background-color 0.3s ease, color 0.3s ease;
      overflow: hidden;
            margin-bottom: 10px;
}

    .user_form_btn_soc img {
      height: 18px;
    }

    .user_form_btn_soc:hover {
      background-color: #f2f2f2;
      color: #000000;
    border: 1px solid #c0c0c0;
    }



         /* ======  Under Button Text  ======  */

.user_form_under_btn_txt_1 {
      text-align: center;
      font-family: Helvetica, sans-serif; 
      font-weight: bold;
      font-size: 14px;
      line-height: 20px;
      color: #000000;
      margin-top: 10px;
      margin-bottom: 10px;
}

.user_form_under_btn_txt_1 a {
      color: #000000;
      text-decoration: underline;
}

.user_form_under_btn_txt_1 a:hover {
      color: #000000;
      text-decoration: none;
}


.user_form_under_btn_txt_2 {
      text-align: center;
      font-family: Helvetica, sans-serif; 
      font-weight: normal;
      font-size: 14px;
      line-height: 23px;
      color: #000000;
      margin-top: 20px;
      margin-bottom: 20px;
}

.user_form_under_btn_txt_2 a {
      color: #000000;
      text-decoration: underline;
}

.user_form_under_btn_txt_2 a:hover {
      color: #000000;
      text-decoration: none;
}
    

    /* =========== MEDIA =========== */
    /* =========== MEDIA =========== */
    /* =========== MEDIA =========== */

    @media (max-width: 1100px) {
      .user_left {
        display: none;
      }
      .user_inner {
        justify-content: center;
      }
    }

    @media (max-width: 600px) {
      .user_right {
        transform: scale(0.93);
        transform-origin: top center; /* точка, от которой идёт масштаб */
        margin-top: 70px;
      }
      .user_bg {
        height: 750px;
      }

    }



