﻿#signup-form {
    font-family: Arial, sans-serif;
    /*font-size: 16px;
    background-color: #ffffff;
    color: #484848;
    line-height: 1.42857143;
    background-color: #fff;*/
    padding: 0 !important;
    box-sizing: border-box !important;
    width: 100% !important;
    text-align: left;
    font-size: 13px;
    color: rgb(51, 51, 51);
}

table, tr, td {
    border: none;
}
.std-hor-align {
    margin-left: 25%;
}
.form-container {
    background-color: #f7f7f5;
    margin-bottom: 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: 4px solid #f2f2f0;
    background: repeating-linear-gradient( -45deg, #f7f7f5, #f7f7f5 4px, #f2f2f0 4px, #f2f2f0 8px );
}
#form-label {
    font-size: 14px !important;
    width: 100% !important;
    margin-bottom: 10px !important;
    color: #484848 !important;
    font-weight: bold;
    margin-left: 30px;
    margin-top: 10px;
}
.form-heading {
    background-color: #E56F0F;
    padding: 15px;
    color: #fff;
    border-radius: 10px;
    border-bottom: 3px solid #a04e0b;
    position: relative;
    margin-bottom: 20px;
}

.form-heading:before {
    content: '';
    left: 50%;
    margin-left: -36px;
    position: absolute;
    bottom: -24px;
    width: 0;
    height: 0;
    border-left: 36px solid transparent;
    border-right: 36px solid transparent;
    border-top: 24px solid #a04e0b;
}

.form-heading:after {
    content: '';
    left: 50%;
    margin-left: -30px;
    position: absolute;
    bottom: -20px;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 20px solid #E56F0F;
    
}

.form-container-inner {
    padding: 30px;
    padding-top: 15px;
}

input {
    border: 0 !important;
    border-top: 2px solid #c0c0c0 !important;
    background-color: #e0e0e0 !important;
    margin: 0px auto !important;
    float: none !important;
    margin-bottom: 4px !important;
    padding: 10px 6px !important;
    border-radius: 0 !important;
    width: 100% !important;
    font-size: 14px !important;
    line-height: 1.2em !important;
    min-height: 40px !important;
    box-shadow: 0 0 3px 3px #ffffff !important;
}

select {
    width: 305px;
    padding: 12px;
    border: 0 !important;
    background-color: #e0e0e0;
    /* needed */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* SVG background image */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Ctitle%3Edown-arrow%3C%2Ftitle%3E%3Cg%20fill%3D%22%23000000%22%3E%3Cpath%20d%3D%22M10.293%2C3.293%2C6%2C7.586%2C1.707%2C3.293A1%2C1%2C0%2C0%2C0%2C.293%2C4.707l5%2C5a1%2C1%2C0%2C0%2C0%2C1.414%2C0l5-5a1%2C1%2C0%2C1%2C0-1.414-1.414Z%22%20fill%3D%22%23000000%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-size: .6em;
    background-position: calc(100% - 1.0em) center;
    background-repeat: no-repeat;
}

div {
    display: block;
}

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #484848;
    line-height: 1.42857143;
    background-color: #fff;
    display: block;
    margin: 8px;
}

* {
    box-sizing: border-box;
}

select::-ms-expand {
    display: none;
}

select option {
    line-height: 20px;
}

.btnsubmit {
    font-size: 18px !important;
    border-radius: 5px !important;
    border: 0 !important;
    text-transform: uppercase !important;
    font-weight: bold !important;
    margin-top: 25px !important;
    background: #DC6922 !important;
    display: block !important;
    padding: 5px 20px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    color: #fff !important;
    min-height: 40px !important;
    box-shadow: none !important;
    width: 150px !important;
}


.std-pad-top {
    padding-top: 50px;
}
.std-pad-bottom {
    padding-bottom: 50px;
}


h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
}

/* Error Tool Tip Styles*/
.field-validation-error {
    /* font */
    font-family: Helvetica;
    font-size: 1em;
    color: #f3f3f3;
    line-height: 20px;
    /* background */
    background-color: #e51b00;
    border: 1px solid #9f1300;
    border-radius: 6px;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    /* positioning */
    float: left;
    position: relative;
    padding: 7px 11px 4px;
    margin-left: 10px; /* distance between error tip and element it points to */
}

/* Top Arrow Styles */
.field-validation-error:after, .field-validation-error:before {
        content: '';
        border: 7px solid transparent;
        position: absolute;
        top: 10px;
    }

.field-validation-error:after {
        border-bottom: 7px solid #e51b00;
        left: 50px;
        top: -14px;
    }

.field-validation-error:before {
        border-bottom: 7px solid #9f1300;
        left: 50px;
        top: -14px;
    }
/* End of Input Error tool tip */

#signupHelpTxt {
    height: fit-content;
    margin-top: 150px;
    padding-top: 15px;
}

.signup_error_message {
    color: #e51b00;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

.signup_success_message {
    color: green;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

a {
    font-size: 14px !important;
    width: 100% !important;
    margin-bottom: 10px !important;
    font-weight: bold;
}