html,
body {
    height: 100%;
}

body {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, #003282, #007dfa, #00cde1);
    /*background: url(/Resources/trianglify.svg) no-repeat center center fixed;*/
    /*-webkit-background-size: cover;
            -moz-background-size: cover;
            -o-background-size: cover;
            background-size: cover;
            opacity: 0.8;
            filter: alpha(opacity=40);*/
}

.form-control {
    min-height: 41px;
    background: #fff;
    box-shadow: none !important;
}

    .form-control:focus {
        border-color: #70c5c0;
    }

.form-control,
.btn {
    border-radius: 2px;
}

.login-form {
    width: 350px;
    margin: 0 auto;
    padding: 100px 0 30px;
}

    .login-form form {
        color: #7a7a7a;
        border-radius: 2px;
        border-radius: 13px;
        margin-bottom: 15px;
        font-size: 13px;
        background: #ececec;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
        padding: 30px;
        position: relative;
        -webkit-box-shadow: 0px 0px 28px 0px rgba(0,0,0,0.75);
        -moz-box-shadow: 0px 0px 28px 0px rgba(0,0,0,0.75);
        box-shadow: 0px 0px 28px 0px rgba(0,0,0,0.75);
    }

    .login-form h2 {
        font-size: 22px;
        margin: 25px 0 25px;
    }

    .login-form .avatar {
        position: absolute;
        margin: 0 auto;
        left: 0;
        right: 0;
        top: -50px;
        width: 95px;
        height: 95px;
        border-radius: 50%;
        z-index: 9;
        background: #70c5c0;
        padding: 15px;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    }

        .login-form .avatar img {
            width: 100%;
        }

    .login-form input[type="checkbox"] {
        margin-top: 2px;
    }

.border-radius-10px {
    border-radius: 10px;
}

.form-group input[type="text"] {
    max-width: 100%;
}

.form-group input[type="password"] {
    max-width: 100%;
}

.login-form .btn {
    font-size: 16px;
    font-weight: bold;
    background: #70c5c0;
    border: none;
    margin-bottom: 20px;
}

    .login-form .btn:hover,
    .login-form .btn:focus {
        background: #50b8b3;
        outline: none !important;
    }

.login-form a {
    color: #fff;
    text-decoration: underline;
}

    .login-form a:hover {
        text-decoration: none;
    }

.login-form form a {
    color: #7a7a7a;
    text-decoration: none;
}

    .login-form form a:hover {
        text-decoration: underline;
    }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:active,
input:-webkit-autofill:focus {
    background-color: #FFFFFF !important;
    color: #555 !important;
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    -webkit-text-fill-color: #555555 !important;
}

.resetBtn {
    font-size: 15px !important;
    color: #24a0d1 !important;
    height: 31px;
    text-align: center;
    text-align: center !important;
}

/* GDPR SECTION */

.gdpr-btn-container {
    position: fixed;
    z-index: 2;
    left: 20px;
    bottom: 80px;
    display: flex;
    align-items: center;
    height: 40px;
}

.gdpr-btn {
    position: fixed;
    z-index: 2;
    left: 20px;
    bottom: 80px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.gdpr-tooltip {
    display: flex;
    visibility: hidden;
    margin-left: 5px;
    padding: 0 18px 0 50px;
    height: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border-radius: 25px;
    background: #fff;
    color: #333;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    transition: opacity 0.3s, visibility 0.3s;
    opacity: 0;
    align-items: center;
}

.gdpr-btn-container a:hover,
.gdpr-btn-container a:focus {
    color: #333;
}

.gdpr-btn-container:hover .gdpr-tooltip, .gdpr-btn:focus .gdpr-tooltip {
    visibility: visible;
    opacity: 1;
}

.custom-icon{
    color: #333;
    font-size: 20px;
}