#reg-container > h3 {
    margin: 30px 20px 20px 20px;
}

#customer {
    display: flex;
    background-color: #F0FAE5;
    color: #546223;
}

    #customer > div {
        padding: 20px;
    }

        #customer > div > p {
            margin-top: 15px;
            margin-bottom: 15px;
        }

    #customer h3 {
        background-color: #F0FAE5;
        color: #546223;
    }

    #customer input[type=submit] {
        background-color: #546223;
        border-color: #546223;
    }

        #customer input[type=submit]:focus, #customer input[type=submit]:hover {
            background-color: #666666;
            border-color: #666666;
        }

    #customer > img {
        max-width: 50%;
    }

#oportunityBenefits {
    display: flex;
}

    #oportunityBenefits > span {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

        #oportunityBenefits > span > img {
            height: 100px;
            width: 100px;
            margin-left: auto;
            margin-right: auto;
        }

#oportunityKnowMore {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid gray;
    margin: 20px 10px;
}

#aboKits {
    display: grid;
    grid-template-columns: auto auto;
}

    #aboKits > div {
        display: flex;
        flex-direction: column;
        margin: 10px 15px 10px 10px;
        padding-bottom: 30px;
    }

        #aboKits > div > * {
            padding: 10px;
        }

        #aboKits > div > *:last-child {
            margin-top: auto;
        }
		
		#aboKits > div > span.invalid-feedback {
            display: initial;
        }


@media (max-width: 600px) {
    #customer > img {
        display: none;
    }

    #reg-container input[type=submit] {
        width: 100%;
    }

    #oportunityBenefits {
        display: grid;
        grid-template-columns: auto auto;
    }

    #aboKits {
        grid-template-columns: auto;
    }

        #aboKits > div {
            border-bottom: 1px solid gray;
        }

        #aboKits > div:last-child {
            border-bottom: none;
        }
}
