body {
    font-family: 'Open Sans', 'Segoe UI', sans-serif;
    background: #f9fafb;
    margin: 0;
    padding: 2rem;
    color: black;
}

html{
    min-height: 100%;
    /*border: 120px solid;
    border-top-color: #205A44;
    border-left-color: #236C50;
    border-bottom-color: #80DFBA;
    border-right-color: #6DD5AD;  */
    box-sizing: border-box;
    *,
    *:before,
    *:after{
        box-sizing: border-box;
    }
}

input {
    background-color: white;
}

.center {
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label, h4.radio-select {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"] {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

.radio-group input[type="radio"] {
    height: 1.2rem;
    width: 1.2rem;
    margin-right: 0.5rem;
    accent-color: rgb(30, 137, 213);
    background-color: #ddd;
    outline-color: #ddd;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0.5rem;
}

.radio {
    display: block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: left;
}
.radio + .radio {
    margin-top: 12px;
}
.radio input {
    display: none;
}
.radio input + span {
    display: inline-block;
    position: relative;
    padding-left: 30px;
}
.radio input + span:before {
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 50%;
    margin-right: 5px;
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    background: #fff;
}
.radio input + span:after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: #222;
    position: absolute;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    opacity: 0;
    transform: scale(0, 0);
    transition: all 0.2s cubic-bezier(0.64, 0.57, 0.67, 1.53);
}
.radio input:checked + span:after {
    opacity: 1;
    transform: scale(1, 1);
}

label.textarea {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

button,
a.btn {
    background: rgb(40, 167, 233);
    border: none;
    border-radius: 3px;
    color: rgb(255, 255, 255);
    display: inline-block;
    cursor: pointer;
    font-family: Verdana, Helvetica, Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: normal;
    justify-content: center;
    padding: 10px 25px;
    text-decoration: none;
    margin-right: 30px;
}

.btn-secondary {
    background: rgb(108, 117, 125) !important;
}

button:hover {
    background: rgb(30, 137, 213);
}

.question-msg {
    font-weight: bold;
    margin-bottom: 20px;
    color: rgb(173, 31, 47);
}

section.content,
.setup-container {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}