* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* body {
	background: #175690;
	font-family: 'open sans', sans-serif;
} */

.forms {
    background: #fff;
    box-shadow: 0 0 3px #f1f1f1;
    margin: 30px auto;
    max-width: 700px;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.forms h1 {
    padding: 0 0 20px 0;
    font-size: 26px;
    color: #666;
    font-weight: lighter;
    text-align: center;
}

.forms form {
    padding: 30px;
}

#corporate {
    display: none;
}

.forms .tab-group {
    list-style: none;
    padding: 0;
    margin: 0;
}

.forms .tab-group:after {
    content: "";
    display: table;
    clear: both;
}

.forms .tab-group li a {
    display: block;
    text-decoration: none;
    padding: 15px;
    background: #e5e6e7;
    color: #888;
    font-size: 20px;
    float: left;
    width: 50%;
    text-align: center;
    border-top: 3px solid transparent;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.forms .tab-group li a:hover {
    background: #dedfdf;
    color: #666;
}

.forms .tab-group .active a {
    background: #fff;
    color: #444;
    border-top: 3px solid #007337;
}

.forms input[type="text"] {
    font-size: 16px;
    display: block;
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #e3e3e3;
    color: #000;
    border-radius: 0;
    margin-bottom: 10px;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    /* text-align: center; */
    /* font-weight: 700; */
}


/* .forms input:focus {
    outline: 0;
    border-color: #2e5ed7;
} */

.forms label {
    font-size: 16px;
    font-weight: normal;
    color: #666;
    margin-bottom: 5px;
    display: block;
}

.forms .button {
    border: 0;
    outline: none;
    border-radius: 0;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 300;
    width: 250px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #0db02b;
    color: #ffffff;
    cursor: pointer;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.default-btn {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
    text-align: center;
    background-color: #007337;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-table;
    padding: 15px 30px;
    border-radius: 0;
}

.next-step {
    font-size: 13px;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    margin-top: 30px;
    border-radius: 0;
    background-color: #0db02b;
}

.forms .button:hover,
.button:focus {
    background: #000;
}

.text-p {
    text-align: right;
}

.text-p a {
    color: #1383ea;
}

.custom_radio {
    margin: 20px;
}

.custom_radio input[type="radio"] {
    display: none;
}

.custom_radio input[type="radio"]+label {
    position: relative;
    display: inline-block;
    padding-left: 1.5em;
    margin-right: 2em;
    cursor: pointer;
    line-height: 1em;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.custom_radio input[type="radio"]+label:before,
.custom_radio input[type="radio"]+label:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    height: 1em;
    text-align: center;
    color: white;
    font-family: Times;
    border-radius: 50%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.custom_radio input[type="radio"]+label:before {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    box-shadow: inset 0 0 0 0.2em #666, inset 0 0 0 1em white;
}

.custom_radio input[type="radio"]+label:hover:before {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    box-shadow: inset 0 0 0 0.3em orange, inset 0 0 0 1em #c6c6c6;
}

.custom_radio input[type="radio"]:checked+label:before {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    box-shadow: inset 0 0 0 0.2em orange, inset 0 0 0 1em #4CAF50;
}

textarea {
    width: 100%;
    height: 130px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 16px;
    resize: none;
}

input[type=radio],
input.radio {
    float: left;
    clear: none;
    margin: 2px 0 0 2px;
    width: auto;
}

.col-30 {
    float: left;
    width: 30%;
    margin-top: 6px;
}

.col-70 {
    float: left;
    width: 70%;
    margin-top: 6px;
}

.same-row {
    float: left;
    clear: none;
}

form.submitted input:invalid {
    border: 1px solid red;
}

.messageboxerror {
    color: red;
}

.messageboxok {
    color: green;
}

label {
    float: left;
    clear: none;
    display: block;
    padding: 0px 1em 0px 8px;
}