﻿.hero.is-primary.is-bold {
    background-image: linear-gradient(141deg, #007260, #01a3a4 71%, #009ebf);
}
#login {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #F7F7F7;
}
.login-card {
    background: #fff;
    width: 30rem;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.11);
}
.card-title {
    background-image: linear-gradient(141deg, #007260, #01a3a4 71%, #009ebf);
   /* background-color: #00d1b2;*/
    padding: 2rem;
}
h1
{
    color: #fff;
    text-align: center;
    font-size: 1.2rem;
}


.content {
    padding: 3rem 2.5rem 5rem;
}

#Email, #Password {
    display: block;
    width: 100%;
    font-size: 1rem;
   /* margin-bottom: 1.75rem;*/
    padding: 0.25rem 0;
    border: none;
    border-bottom: 1px solid #b5b5b5;
    transition: all .5s;
}

    #Email:hover, #Password:hover {
        border-color: #7a7a7a;
    }

    #Email:active, #Email:focus, #Password:active, #Password:focus {
        border-color: #00d1b2;
    }


.checkbox {
    color: #b5b5b5;
    font-size: 0.8rem;
}
    span

{
    margin-left: 0.5rem;
}


a {
    font-size: 0.8rem;
}

.options {
    color: #b5b5b5;
    margin-bottom: 1.5rem;
}

button {
    cursor: pointer;
    font-size: 1.2rem;
    color: #00d1b2;
    border-radius: 4rem;
    display: block;
    width: 100%;
    background: transparent;
    border: 2px solid #00d1b2;
    padding: 0.9rem 0 1.1rem;
    transition: color .5s, border-color .5s;
}
    button:hover, button:focus {
        color: #00d1b2;
        border-color: #00d1b2;
    }

    button:active {
        transform: translateY(1px);
    }

.button.is-success.is-outlined {
    background-color: rgba(0, 0, 0, 0);
    border-color: #00d1b2;
    color: #00d1b2;
}
    .button.is-success.is-outlined:hover, .button.is-success.is-outlined.is-hovered, .button.is-success.is-outlined:focus, .button.is-success.is-outlined.is-focused {
        background-color: rgba(0, 0, 0, 0);
        border-color: #00d1b2;
        color: #00d1b2;
    }
label {
    cursor: pointer;
}

.regular-checkbox {
    display: none;
}

    .regular-checkbox + label {
        background-color: #fafafa;
        border: 1px solid #b5b5b5;
        box-shadow: 0 1px 2px rgba(0,0,0,0.05);
        padding: 7px;
        border-radius: 3px;
        display: inline-block;
        position: relative;
    }

    .regular-checkbox:checked + label {
        background-color: #e9ecee;
    }

        .regular-checkbox:checked + label:after {
            content: '\2714';
            font-size: 11px;
            position: absolute;
            top: 0;
            left: 3px;
            color: #b5b5b5;
        }

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}
.ajax-load-div-outer {
    position: fixed;
    z-index: 10100;
    display: none;
    text-align: center;
    background: rgba(0, 0, 0, 0.75);
    border: 0px none transparent;
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    -webkit-tap-highlight-color: transparent;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s;
    visibility: visible;
}

    .ajax-load-div-outer .inner {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .ajax-load-div-outer .content-pane {
        position: absolute;
        display: inline-block;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

        .ajax-load-div-outer .content-pane .load-icon {
            margin: auto;
        }

        .ajax-load-div-outer .content-pane p {
            margin: 20px 0 0;
        }

        .ajax-load-div-outer .content-pane b {
            color: #d5d5d5;
            font-size: 17px;
        }
