form.investor-form {
    max-width: 100%;
    margin: 0;
    padding:20px 20px 15px 20px;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    background: #f4f4f4;
}
form.investor-form label { display: inline; }
form.investor-form input {  /* no styling present */ }
form.investor-form button {
    width: 100%;
    background: #121A37;
    color: white;
	font-weight:700;
    border-radius: 100px;
	border-color:#121A37;
    padding: 18px 35px;
    cursor: pointer;
}
form.investor-form button:hover {
    background: #28ABE2;
	border-color:#28ABE2;
}
.investor-field-group {
    padding: 10px;
    background: #e9e9e9;
    margin-bottom: 12px;
    width: 100%;
}
.investor-field-group label {
    margin: 5px 0 2px;
}
.investor-field-group p {
    margin: 0;
}
.investor-column { 
    align-items: center;
    flex-wrap: wrap;
    display: flex;
}
.investor-col-100 {
    width: 100%;
    padding: calc(5px / 2);
}
.investor-col-50 {
    width: 50%;
    padding: calc(5px / 2);
}
.quiz-question {
    padding: 10px;
    background: #e9e9e9;
    margin-bottom: 12px;
    width:100%;
}
.quiz-question label {
    display: inline-block;
    margin-right: 20px;
}
.quiz-options {  /* no styling present */ }