* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    background-color: white;
}

.page-container {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 36px 80px 80px;
    background-color: white;
    min-height: 100vh;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
}

.header {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.logo {
    object-fit: contain;
    aspect-ratio: 0.9;
    width: 120px;
}

.main-content {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 56px;
    width: 100%;
    background-color: white;
    border-radius: 24px;
    border-radius: 24px;
    border: 1px solid var(--colors-neutral-grey-200, #e8e8e8);
    background: var(--colors-neutral-grey-100, #fff);
    /* Global Tokens/E1 */
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2),
        0px 4px 5px 0px rgba(0, 0, 0, 0.14),
        0px 1px 10px 0px rgba(0, 0, 0, 0.12);
    min-height: 534px;
}

.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    height: 100%;
    min-width: 240px;
    width: 100%;
}

.text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 240px;
    width: 560px;
    flex: 1;
}

.content-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.main-title {
    font-size: 36px;
    font-weight: bold;
    color: #54b28e;
    line-height: 1.1;
}

.text-section {
    margin-top: 8px;
    width: 100%;
}

.text-wrapper {
    width: 100%;
}

.subtitle {
    font-size: 24px;
    font-weight: bold;
    line-height: 36px;
    color: #27272a;
}

.description {
    margin-top: 8px;
    font-size: 16px;
    color: #737373;
}

.email-form {
    margin-top: 20px;
    width: 100%;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 16px;
    width: 100%;
    font-size: 16px;
    background-color: white;
    border-radius: 12px;
    border: 1px solid #d4d4d8;
    min-height: 48px;
    align-items: stretch;
}

.email-input {
    flex: 1;
    flex-shrink: 1;
    margin: auto 0;
    min-width: 24px;
    color: #737373;
    background: transparent;
    border: none;
    outline: none;
    font-size: 16px;
}

.email-input::placeholder {
    color: #737373;
}

.submit-button {
    display: flex;
    overflow: hidden;
    gap: 8px;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    text-align: center;
    color: white;
    min-width: 162px;
    width: 162px;
    cursor: pointer;
    transition: background-color 0.2s ease;

    border-radius: 0px 8px 8px 0px;
    border: 0px solid var(--colors-primary-light-green-600, #3f856a);
    background: var(--colors-primary-light-green-600, #3f856a);
}

.submit-button:hover {
    background-color: #334155;
}

.button-text {
    align-self: stretch;
    margin: auto 0;
    color: white;
    font-size: 16px;
}

.illustration-section {
    display: flex;
    gap: 12px;
    align-items: center;
    height: 100%;
    min-width: 240px;
    width: 502px;
    flex: 1;
}

.illustration {
    object-fit: contain;
    align-self: stretch;
    margin: auto 0;
    aspect-ratio: 1.38;
    min-width: 240px;
    width: 502px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-container {
        padding: 36px 20px 80px;
    }

    .main-content {
        padding: 20px;
    }

    .content-wrapper {
        max-width: 100%;
    }

    .main-title {
        max-width: 100%;
    }

    .subtitle {
        max-width: 100%;
    }

    .description {
        max-width: 100%;
    }

    .form-container {
        max-width: 100%;
    }

    .text-content {
        max-width: 100%;
    }

    .illustration-section {
        max-width: 100%;
    }

    .content-grid {
        flex-direction: column;
    }

    .text-content {
        width: 100%;
    }

    .illustration-section {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 20px;
        line-height: 28px;
    }

    .submit-button {
        min-width: 120px;
        width: 120px;
    }

    .form-container {
        flex-direction: column;
        padding: 0;
    }

    .email-input {
        padding: 12px 16px;
        border-bottom: 1px solid #d4d4d8;
    }

    .submit-button {
        width: 100%;
        border-radius: 0 0 12px 12px;
    }
}
