.newsletter-unsubscribe-page {
    display: grid;
    min-height: calc(100vh - 70px);
    padding: 64px 20px 80px;
    box-sizing: border-box;    
    place-items: start center;
}

.newsletter-unsubscribe-card {
    width: min(100%, 680px);
    padding: 42px;
    border: 1px solid #d8e0e5;
    border-radius: 10px;
    box-sizing: border-box;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(16, 79, 117, 0.1);
}

.newsletter-unsubscribe-card h1 {
    margin: 0 0 16px;
    color: var(--iozer-color);
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    line-height: 1.05;
    text-align: left;
}

.newsletter-unsubscribe-card p {
    text-align: left;
}

.newsletter-unsubscribe-intro {
    margin: 0 0 28px;
    color: #3e4a52;
    line-height: 1.6;
}

.newsletter-unsubscribe-message {
    margin-bottom: 24px;
    padding: 14px 16px;
    border-left: 4px solid #bf2a2a;
    background: #fff2f2;
    color: #772020;
    line-height: 1.45;
}

.newsletter-unsubscribe-message.is-success {
    border-left-color: #43893d;
    background: #eff8ee;
    color: #265c22;
}

.newsletter-unsubscribe-message.is-hidden,
.newsletter-unsubscribe-form.is-hidden {
    display: none;
}

.newsletter-unsubscribe-form label {
    display: block;
    margin-bottom: 7px;
    color: #25313a;
    font-weight: 700;
}

.newsletter-unsubscribe-form input[type="email"] {
    width: 100%;
    min-height: 48px;
    padding: 10px 13px;
    border: 1px solid #aebbc3;
    border-radius: 6px;
    box-sizing: border-box;
    background: #ffffff;
    color: #17242c;
    font: inherit;
    outline: none;
}

.newsletter-unsubscribe-form input[type="email"]:focus {
    border-color: #117da8;
    box-shadow: 0 0 0 3px rgba(17, 125, 168, 0.16);
}

.newsletter-unsubscribe-hint {
    margin: 8px 0 22px;
    color: #65717a;
    font-size: 0.9rem;
    line-height: 1.4;
}

.newsletter-unsubscribe-recaptcha {
    max-width: 100%;
    margin: 0 0 22px;
    overflow: hidden;
}

.newsletter-unsubscribe-form button {
    min-height: 48px;
    padding: 10px 22px;
    border: 0;
    border-radius: 7px;
    background: #117da8;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.newsletter-unsubscribe-form button:hover,
.newsletter-unsubscribe-form button:focus-visible {
    background: #0e6488;
}

.newsletter-unsubscribe-footer {
    margin: 28px 0 0;
    padding-top: 20px;
    border-top: 1px solid #e1e6e9;
    color: #65717a;
    font-size: 0.92rem;
    line-height: 1.5;
}

.newsletter-unsubscribe-trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media screen and (max-width: 600px) {
    .newsletter-unsubscribe-page {
        padding: 28px 12px 48px;
    }

    .newsletter-unsubscribe-card {
        padding: 26px 20px;
    }

    .newsletter-unsubscribe-form button {
        width: 100%;
    }
}

@media screen and (max-width: 350px) {
    .newsletter-unsubscribe-recaptcha .g-recaptcha {
        height: 67px;
        transform: scale(0.84);
        transform-origin: left top;
    }
}
