/* Основные стили формы */
.intgrtn-form-signup {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
}

/* Заголовок формы */
.intgrtn-form-signup::before {
    content: "Zmeňte svoj život ešte dnes";
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: #ffd700 url('../lg.jpg') no-repeat center bottom 15px / auto 50px;
    /* bottom 15px — отступ логотипа от нижнего края блока */
    background-color: #ffd700;
  
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 20px 15px 70px 15px;              /* большой нижний padding под логотип */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  
    min-height: 110px;
    width: 100%;
  }

/* Контейнер для полей ввода */
.intgrtn-input-holder {
    margin-bottom: 15px;
    position: relative;
}

/* Стили для полей ввода */
.intgrtn-input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.intgrtn-input:focus {
    border-color: #642F99;
    outline: none;
}

/* Сообщения об ошибках */
.intgrtn-input-message-error {
    color: red;
    font-size: 14px;
    display: none;
    margin-top: 5px;
}

/* Кнопка отправки */
.intgrtn-btn-submit-holder {
    text-align: center;
}

.intgrtn-btn-submit {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    color: #fff;
    background: #ffd700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: bold;
    text-transform: uppercase;
}


