<style>
.uc-page
{
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    padding:  0 !important;
    margin: 0 !important;
}
    header, footer, .wp-block-post-title
    {
        display: none;
    }
* {
    box-sizing: border-box;
}

.uc-page {
    min-height: calc(100vh - 40px);
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f3f4f6;
    color: #111827;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

.uc-page .wrapper {
    max-width: 1200px;
    margin: 40px auto;
    background: #ffffff;
    padding: 50px; /* 50px padding all around the whole box */
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.uc-page .top-logo {
    display: block;
    margin: 0 auto 40px auto;
    max-width: 300px;
    width: 100%;
    height: auto;
}

.uc-page .flex-layout {
    display: flex;
    flex-direction: column; /* mobile: stacked (100% rows) */
    gap: 32px;
}

.uc-page .column {
    flex: 1 1 100%;
}

.uc-page .left-column {
    text-align: left;
}

.uc-page .left-column h1 {
    font-size: 2rem;
    margin: 0 0 16px 0;
    color: #3d4e62;
}

.uc-page .left-column p {
    margin: 0 0 16px 0;
    line-height: 1.6;
    color: #3d4e62;
}

.uc-page .subscribe-form {
    margin-top: 24px;
    max-width: 420px;
}

.uc-page .subscribe-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.uc-page .subscribe-form input[type="email"] {
    width: 100%;
    max-width: 250px;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 0.95rem;
    outline: none;
}

.uc-page .subscribe-form input[type="email"]:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.uc-page .subscribe-form button {
    max-width: 250px;
    margin-top: 10px;
    width: 100%;
    padding: 18px 14px;
    border-radius: 8px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    background: #3d4e62;
    color: #ffffff;
    transition: background 0.15s ease, transform 0.1s ease;
}

.uc-page .subscribe-form button:hover:not(:disabled) {
    background: #3d4e62;
    transform: translateY(-1px);
}

.uc-page .subscribe-form button:disabled {
    background: #16a34a;
    cursor: default;
}

.uc-page .message-success {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #16a34a;
}

.uc-page .message-error {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #dc2626;
}

.uc-page .right-column img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Desktop: two columns, each 50% width */
@media (min-width: 768px) {
    .uc-page .flex-layout {
        flex-direction: row;
    }

    .uc-page .column {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

</style>