.display-none {
    display: none;
}

.orange-button:hover, .orange-button:focus {
    filter: alpha(opacity=90);
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.1)));
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.1));
    border-color: #ff8300;
}

.simple-form-style {
    padding: 0.625rem;    
}

.simple-form-style .field-validation-valid {
    color: white !important;
}

.simple-form-style .form-control {
    border-radius: 0px;
}

.simple-form-style .form-control:focus {
    box-shadow: none;
}

.simple-form-style .form-label {
    margin-bottom: 0;
}


.simple-form-style h1 {
    font-size: 1.6rem;
}

.simple-form-style .form-fields-wrapper {
    width: 235px;
}

.simple-form-style a {
    color: #ff8300;
    text-decoration: none;
}


    .simple-form-style.limit-width {
        display: flex;

        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

.login-button{
    padding:10px;
    border: 1px solid lightgray;
    color: #47a141 !important;
    text-transform: uppercase;
    font-weight: 700;
    width: max-content;
 
}



.login-buttons-container{
    display: flex;
       margin-top: 2em;
}

.simple-form-style .validation-row {
    display: flex;
    flex-direction: column;
}

.simple-form-style .form-text {
    font-size: 17px;
}

.simple-form-style .form-fields-wrapper {
    padding: 0.35em 0.75em 0.625em;    
}

.simple-form-style .validation-summary {
    width: 300px;
    font-size: 90%;
    color: white;
    position: relative;
}

.simple-form-style .input-box-error.field-validation-error {
    font-size: 15px;
    display: inline-block;
    background: #9e3223;
    padding: 10px;
    margin-top: 5px;    
    color: white;
}

.simple-form-style .input-box-error.field-validation-error ul {
    margin-bottom: 0;
    margin: 1rem 0;
    padding-left: 2rem;
    list-style-type: disc;
}

.simple-form-style .input-box-error.field-validation-error::before {
position: absolute;
    content: "";
    top: 57px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #9e3223;
    border-top: 0;
}

    .simple-form-style .validation-summary-errors.form-errors {
        background: #9e3223;
        padding: 10px;
    }

        .simple-form-style .validation-summary-errors.form-errors ul {
            margin-bottom: 0;
            margin: 1rem 0;
            padding-left: 2rem;
            list-style-type: disc;
        }

        .simple-form-style .validation-summary-errors.form-errors::before {
            position: absolute;
            content: "";
            top: auto;
            bottom: -8px;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid #9e3223;
            border-bottom: 0;
        }

.simple-form-style .form-check-input[type="checkbox"] {
    border-radius: 0;
}

.simple-form-style .form-check-input:checked[type="checkbox"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%2347a141' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.simple-form-style .form-check-input:checked[type="checkbox"] {
    background-color: white;
    border-color: #d8d8d8;
}

.simple-form-style .form-check-input:focus {
    box-shadow: none;
}

.simple-form-style .form-select:focus {
    box-shadow: none;
}

@media screen and (min-width: 48em) {
    .simple-form-style h1 {
        font-size: 4.2rem;
    }
    
    .simple-form-style.limit-width {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    
    .simple-form-style .validation-row {
        display: flex;
        flex-direction: row;
        gap: 5px;
    }
    
    .login-button.register{
        margin-left: 1em;
    }
    
    .login-buttons-container{
        flex-direction: row;
    }
}

/* Register form specific css */
.member-services {
    padding: 1.25rem;
    border: 1px solid #d8d8d8;
    font-size: 17px;
}

.member-services p, .member-services .form-check {
    margin: 10px 0;
}

.member-services .form-select {
    border-radius: 0;
    width: 260px;
}

.register-form.simple-form-style.limit-width form {
    width: 80%;
}

@media screen and (min-width: 48em) {
.register-form.simple-form-style.limit-width form {
    width: 60%;
}

.simple-form-style.limit-width form{
    width: 50%;
}

}

/* global button styles */

.pure-button {
    display: inline-block;
    zoom: 1;
    line-height: normal;
    white-space: nowrap;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: inherit;
    font-weight: 700;
    font-size: 100%;
    padding: 0.5em 1em;
    border: 1px solid #ff8300;
    color: #fff;
    background-color: #ff8300;
    text-decoration: none;
    border-radius: 2px;
    text-transform: uppercase;
}

.orange-button {
    display: inline-block;
    zoom: 1;
    line-height: normal;
    white-space: nowrap;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: inherit;
    font-weight: 700;
    font-size: 100%;
    padding: 0.5em 1em;
    border: 1px solid #ff8300;
    color: #fff;
    background-color: #ff8300;
    text-decoration: none;
    border-radius: 2px;
    text-transform: uppercase;
}

.green-outline-button {
    display: inline-block;
    background-color: #fff;
    border-color: #d8d8d8;
    color: #47a141 !important;    
}

.green-outline-button:hover {
    border-color: #47a141;    
}

@media screen and (max-width: 990px){
    .login-buttons-container{
        flex-direction: column;
    }
}