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

/* write your CSS here */

body {
    background-color: #E6E9FB;
    font-family: Poppins, serif;
    height: 100vh;
    display: flex;
    justify-content: center;
}
#container {
    max-width: 68.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    border-radius: 1rem;
    box-shadow: 0.625rem 0.625rem 0 0 rgba(255 255 255 / 40%);
}
h1 {
    font-family: Merriweather, serif;
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: 0.0625rem;
    color: #111827;
    text-align: center;
    margin: 4.625rem 16.625rem 0 14.5625rem;
}
h2 {
    font-weight: 400;
    font-size: 1.5rem;
    color: #374151;
    text-align: center;
    margin: 0.75rem 7rem 0 7rem;
}
#form {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
#checkbox-handle {
    display: flex;
    margin: 0.5rem 8.125rem 4.625rem 9rem;
    gap: 1rem;
}
#email {
    width: 37.5rem;
    height: 4.5rem;
    margin-left: 9rem;
    border: 0.0625rem solid #B3B8D8;
    box-sizing: border-box;
    border-radius: 0.5rem;
    color: #374151;
    font-size: 1.5rem;
    font-weight: 400;
    padding: 1.125rem 16.875rem 1.125rem 2rem;
}
::placeholder {
    font-size: 1.5rem;
    font-weight: 400;
    color: #B3B8D8;
}
#btn {
    background-color: #111827;
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1.125rem 2rem;
    border-radius: 0.5rem;
}
#checkbox {
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    margin-top: 0.5rem;
    width: 1.875rem;
    height: 1.25rem;
    border: 0.0625rem solid #111827;
    border-radius: 0.375rem;
    display: grid;
    place-content: center;
    transform: translateY(-0.075em);
}
#checkbox::before {
    content: "";
    width: 0.65rem;
    height: 0.65rem;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    background-color: #111827;
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
#checkbox:checked::before {
    transform: scale(1);
}
#checkbox-label {
    font-size: 0.875rem;
    font-weight: 400;
    color: #111827;
    margin-top: 0.25rem;
}