﻿[v-cloak] {
    display: none;
}

div#regForm {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 14px;
    background: #f2f2f2;
}

.validationErrorMessage {
    /* background: pink; */
    color: red;
    font-weight: bold;
    padding: 5px;
    font-size: 0.7em;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
}

.form_wrapper {
    background: #fbfbfb;
    width: 480px;
    margin: auto;
    max-width: 100%;
    box-sizing: border-box;
    padding: 25px;
    position: relative;
    z-index: 1;
}

    .form_wrapper h2 {
        font-size: 1.5em;
        line-height: 1.5em;
        margin: 0;
    }


    .form_wrapper .title_container {
        text-align: center;
        padding-bottom: 15px;
    }

.form_container_regform h3 {
    font-size: 0.8em;
    font-weight: 600;
    line-height: 1.5em;
    margin: 0;
    border: none;
    padding-top: 8px;
    padding-bottom: 5px;
    color: #7b7b7b;
    border-bottom: lightgrey 1px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(to left, transparent, grey, transparent);
    margin-bottom: 5px
}

.form_wrapper label {
    font-size: 12px;
}

.form_wrapper .row {
    margin: 8px -15px 0 -15px;
    display: flex;
}

    .form_wrapper .row > div {
        padding: 0 7px;
        box-sizing: border-box;
    }

.form_wrapper .col_half {
    flex-basis: 50%;
}

.form_wrapper .col_third {
    flex-basis: 33%;
}

.form_wrapper .col_rest {
    flex-grow: 100;
    xfloat: left;
}

.form_wrapper .col_full {
    flex-grow: 100;
    flex-direction: column;
}

.select_option_hasValue {
    color: inherit /* change the color so its not using the placeholder style */
}

.select_option {
    position: relative;
    width: 100%;
}

    .select_option select {
        display: inline-block;
        width: 100%;
        height: 35px;
        padding: 0px 15px;
        cursor: pointer;
        color: #7b7b7b;
        border: 1px solid #cccccc;
        border-radius: 0;
        background: #fff;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        transition: all 0.2s ease;
    }

        .select_option select::-ms-expand {
            display: none;
        }

        .select_option select:hover,
        .select_option select:focus {
            color: #000000;
            background: #fafafa;
            border-color: #000000;
            outline: none;
        }

.select_arrow {
    position: absolute;
    top: calc(50% - 4px);
    right: 15px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-width: 8px 5px 0 5px;
    border-style: solid;
    border-color: #7b7b7b transparent transparent transparent;
}

.select_option select:hover + .select_arrow,
.select_option select:focus + .select_arrow {
    border-top-color: #000000;
}

.form_wrapper .input_field,
.formGroup {
    position: relative;
    zmargin-bottom: 10px;
}

    .form_wrapper .input_field > span {
        position: absolute;
        left: 0;
        top: 0;
        color: #333;
        height: 100%;
        border-right: 1px solid #cccccc;
        text-align: center;
        width: 30px;
    }

        .form_wrapper .input_field > span > i {
            padding-top: 10px;
        }

.form_wrapper .textarea_field > span > i {
    padding-top: 10px;
}

.form_wrapper .input_field label {
    line-height: 0
}

.form_wrapper input[type="text"],
.form_wrapper input[type="email"],
.form_wrapper input[type="password"],
.form_wrapper input[type="tel"],
.form_wrapper input[type="date"],
.form_wrapper select {
    width: 100%;
    padding: 8px 10px 9px 8px;
    height: 35px;
    border: 1px solid #cccccc;
    box-sizing: border-box;
    outline: none;
    font-size: .85em;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/*use ~ isntead of +, as some password utils put an element after the span  and before the input*/
.form_wrapper span ~ input[type="text"],
.form_wrapper span ~ input[type="email"],
.form_wrapper span ~ input[type="password"],
.form_wrapper span ~ input[type="tel"],
.form_wrapper span ~ input[type="date"],
.form_wrapper span ~ select {
    padding: 8px 10px 9px 35px;
}

.form_wrapper input[type="text"]:hover,
.form_wrapper input[type="email"]:hover,
.form_wrapper input[type="password"]:hover
.form_wrapper input[type="tel"]:hover
.form_wrapper input[type="date"]:hover {
    background: #fafafa;
}

.form_wrapper input[type="text"]:focus,
.form_wrapper input[type="email"]:focus,
.form_wrapper input[type="password"]:focus,
.form_wrapper input[type="tel"]:focus
.form_wrapper input[type="date"]:focus {
    -webkit-box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
    -moz-box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
    box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
    border: 1px solid #f5ba1a;
    background: #fafafa;
}

.form_wrapper .input_field.checkbox_option {
    padding-left: 8px
}

    .form_wrapper .input_field.checkbox_option label {
        padding-left: 5px;
        vertical-align: middle;
    }

.validationErrorField, .validationErrorField, .form_wrapper select.validationErrorField {
    background: #ffc0cb7a;
    color: black;
    border: 1px solid #ff0000;
}

.checkEmailOptions {
    text-align: center;
    width: 100%
}

.form_wrapper .checkEmailOptions input[type="button"] {
    width: 45%;
    margin: 3px
}

.termsFrame {
    height: 80vh;
    width: 100%;
    margin-top: 20px
}

.regFormGroup_relationships_itemsgroup {
    display: flex;
    flex-flow: column;
    gap: 4px;
}

.regFormGroup_relationships_pair {
    display: flex;
    gap: 10px;
    flex-grow: 1;
}

.regFormGroup_relationships_item {
    flex-grow: 1;
}

.form_wrapper input[type="submit"], .form_wrapper input[type="button"] {
    margin-top: 5px;
    /* background: #f5ba1a; */
    /* height: 35px; */
    line-height: 35px;
    width: 100%;
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    font-size: 1.1em;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form_wrapper button {
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.formRowEmailAddress button {
}

.form_wrapper input[type="submit"]:hover, .form_wrapper input[type="button"]:hover {
    /* background: #e1a70a; */
}

.form_wrapper input[type="submit"]:focus, .form_wrapper input[type="button"]:focus {
    /* background: #e1a70a; */
}


.form_container .row .col_half.last {
    border-left: 1px solid #cccccc;
}

.credit {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 15px;
    color: #f5ba1a;
}

    .credit a {
        color: #e1a70a;
    }

label input {
    vertical-align: middle;
    position: relative;
    bottom: 1px;
}

@media (max-width: 600px) {
    .form_wrapper .col_half {
        width: 100%;
        float: none;
    }

    .bottom_row .col_half {
        width: 50%;
        float: left;
    }

    .form_container .row .col_half.last {
        border-left: none;
    }

    .remember_me {
        padding-bottom: 20px;
    }
}

.p-floating-container {
    position: relative;
}

    .p-floating-container label {
        /* Position the label */
        left: 8px;
        position: absolute;
        top: 0;
        /* Hide it by default */
        visibility: hidden;
        transition: "all 200ms";
    }

/* Show the label at desired position when the placeholder of input isn't shown */
.showFloatLabel input + label, .showFloatLabel select + label,
.showFloatLabel span + input + label, .showFloatLabel span + select + label,
.showFloatLabel div + label {
    background: inherit;
    transform: translate(0, -50%);
    opacity: 1;
    right: 5px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: .6em;
    color: #a0a0a0;
    visibility: visible;
    text-align: right;
    top: 7px;
}

.formGroup {
    padding-left: 10px;
    border: 1px solid #cccccc;
    padding-right: 15px;
    padding-bottom: 5px;
    margin-bottom: 5px;
    background-color: #f5f5f5;
}

    .formGroup > span {
        position: absolute;
        left: 0;
        top: 0;
        color: #333;
        height: 100%;
        xborder-right: 1px solid #cccccc;
        text-align: center;
        width: 30px;
    }

        .formGroup > span > i {
            padding-top: 7px;
        }

    .formGroup .row,
    .formGroup h3 {
        padding-left: 25px;
    }

.buttonAsLink {
    align-items: normal;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgb(0, 0, 238);
    border-style: none;
    box-sizing: content-box;
    color: rgb(0, 0, 238);
    cursor: pointer;
    display: inline;
    font: inherit;
    height: auto;
    padding: 0;
    perspective-origin: 0 0;
    text-align: start;
    text-decoration: underline;
    transform-origin: 0 0;
    width: auto;
    font-size: 0.7em;
    outline: 1 solid red;
    -moz-appearance: none;
    -webkit-logical-height: 1em;
    -webkit-logical-width: auto;
}

    .buttonAsLink.goBackButton i {
        vertical-align: baseline;
        display: inline-block;
        padding-top: 6px;
        font-size: 0.8em;
    }

@supports (-moz-appearance: none) {
    .buttonAsLink::-moz-focus-inner {
        border: none;
        padding: 0;
    }

    .buttonAsLink:focus {
        outline-style: dotted;
        outline-width: 1px;
    }
}

.form_container label > input[type="radio"] {
    vertical-align: middle;
    margin-top: 0px;
}

.addressVerificationCandidates-header {
    margin-top: 20px;
    text-align: center;
    font-size: larger;
    font-weight: bold;
}

.addressVerificationCandidates-footer {
    text-align: center;
    margin-top: 20px;
}
