#content-area {
    input[type="text"],
    input[type="email"] {
        border: none;
        border-bottom: 1px solid;
        min-width: 250px;
        }

    label {
        font-weight: normal;
    }

    input[type="radio"]:checked + label::before {
        background: none;
    }

    input[type="radio"]:checked + label::after {
        content: '\2714';
    }
}

#download-form {
    text-transform: capitalize;
    padding: 18px 34px;
    height: 44px;
    font-weight: bold;
    border-radius: 8px;
    background-color: #2C3862;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    &:active {
        background-color: #222E5C;
    }

    &:hover {
        background-color: #3C4C87;
    }
}