:root {
    --shadow: 0px 30px 100px 0px rgba(17, 23, 41, 0.05);

    /* Colors */
    --white: #fff;
    --gray-100: #F9FAFB;
    --gray-200: #E5E7EB;
    --gray-300: #6C727F;
    --black: #000;
    --blue: #3662E3;

    /* Font */
    --font-family: 'Poppins', sans-serif;

    /* Font Sizes */
    --font-size-header: 3rem;
    --font-size-subheader: 1.25rem;
    --font-size-body: 1rem;
    --font-size-helper: 0.875rem;

    /* Font Weights */
    --font-weight-semibold: 600;
    --font-weight-medium: 500;
    --font-weight-regular: 400;
}

body {
    background-color: var(--gray-100);
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    font-size: var(--font-size-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

.container {
    min-height: 100vh;
    padding-inline: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 684px;
    margin: 0 auto;
}

.title {
    font-size: var(--font-size-header);
    font-weight: var(--font-weight-semibold);
    color: var(--black);
    text-align: center;
}

.subtitle {
    font-size: var(--font-size-subheader);
    font-weight: var(--font-weight-regular);
    color: var(--gray-300);
    text-align: center;
    text-wrap: pretty;

    @media (min-width: 1024px) {
        text-wrap: balance;

        br {
            display: none;
        }

    }
}

form {
    margin-top: 1rem;
    background-color: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 80%;
    border-radius: .5rem;
    padding: 1rem 2rem;

    .email {
        width: 93%;
        background-color: var(--gray-100);
        border: 1px solid var(--gray-200);
        color: var(--gray-300);
        border-radius: 4px;
        padding: 1rem;
        font-size: var(--font-size-body);

        &::placeholder {
            color: var(--gray-300);
            font-weight: var(--font-weight-medium);
            text-align: center;
            font-size: var(--font-size-body);
        }
    }

    .submit {
        width: 100%;
        background-color: var(--blue);
        color: var(--white);
        border: none;
        padding: 1rem;
        font-size: var(--font-size-body);
        border-radius: 4px;
        cursor: pointer;
    }

    .disclaimer {
        font-size: var(--font-size-helper);
        color: var(--gray-300);
        text-align: center;
    }
}