/* =========================================
   MAILING LIST
========================================= */

.shl-mailing {
    width: 100%;
}


/* =========================================
   TITLE
========================================= */

.shl-mailing-title {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 22px;

    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;

    color: #ffffff;
}

.shl-mailing-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.shl-mailing-icon svg {
    display: block;
}


/* =========================================
   FORM
========================================= */

.shl-mailing-form {
    width: 100%;
}

.shl-mailing-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 50px 0px;
    padding: 0px 10%;
}


/* =========================================
   FIELDS
========================================= */

.shl-mailing-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.shl-mailing-field label {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    color: #ffffff;
}

.shl-mailing-field input {
    width: 100%;
    height: 44px;
    padding: 25px 19px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 26px;
    background: transparent;
    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.shl-mailing-field input::placeholder {
    color: #ffffff;
    opacity: 0.8;
}


.shl-mailing-field input:focus {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}


/* =========================================
   BUTTON
========================================= */

.shl-mailing-submit {
    display: flex;
    justify-content: center;
    min-width: 100px;
    height: 42px;
    font-weight: 400;
    border: 0;
    background: #ffffff;
    font-family: inherit;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    background-color: #6DC5D4;
    font-size: 32px;
    border-radius: 30px;
    padding: 30px;
    color: white;
    flex-direction: row;
    margin: 30px auto 0px;
    align-items: center;
}

.shl-mailing-submit:hover {
    opacity: 0.9;
}

.shl-mailing-submit:active {
    transform: translateY(1px);
}


/* =========================================
   MESSAGE
========================================= */

.shl-mailing-message {
    display: none;
    margin: 30px;
    font-size: 25px;
    text-align: center;
    line-height: 1.4;
    color: #bfe8ed;
}

.shl-mailing-message.is-visible {
    display: block;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .shl-mailing-fields {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .shl-mailing-title {
        align-items: flex-start;
        font-size: 17px;
    }

    .shl-mailing-submit {
        width: 100%;
    }

}