﻿.login
{
    position: absolute;
    height: 100%;
    overflow: hidden;
    width: 100%;
    z-index: 2;
}

.login-panel
{
    position: relative;
    width: 400px;
    margin-top: -200px;
    margin-left: -200px;
    top: 50%;
    left: 50%;
}

.login-container
{
    padding: 2px;
}

.login-logotype
{
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 30px;
}

    .login-logotype img
    {
        width: 165px;
    }

.login-title
{
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.login-form
{
    position: relative;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 10px;
}

.login-link
{
    position: relative;
    display: block;
    text-align: center;
    margin-top: 15px;
}

    .login-link a
    {
        color: #ffffff;
        font-size: 13px;
        transition: all .3s;
    }

        .login-link a:hover
        {
            color: #00fff8;
        }

.login-info
{
    position: relative;
    display: block;
    text-align: left;
    background: rgba(201, 201, 201, 0.15);
    border-radius: 8px;
    padding: 6px 8px;
    margin-bottom: 15px;
    margin-left: 30px;
    margin-right: 30px;
}

    .login-info p
    {
        color: #ffffff;
        margin: 0;
    }

    .login-info ul
    {
        list-style-type: none;
        margin: 0;
        padding: 0;
        padding-left: 15px;
    }

        .login-info ul li
        {
            list-style-type: disc;
            color: #ffffff;
        }

.login-control
{
    position: relative;
    padding: 5px;
    display: block;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
}

    .login-control input[type="text"],
    .login-control input[type="password"]
    {
        height: auto;
        padding: 11px 12px 10px 35px;
        border: none;
        font-weight: 400;
        font-size: 15px;
        color: #2c2f39;
        border-radius: 10px;
        box-shadow: none;
        cursor: text;
    }

        .login-control input[type="text"]:hover,
        .login-control input[type="password"]:hover
        {
            box-shadow: none;
            border: none;
        }

        .login-control input[type="text"]:disabled,
        .login-control input[type="password"].aspNetDisabled,
        .login-control input[type="text"]:disabled,
        .login-control input[type="password"].aspNetDisabled
        {
            cursor: not-allowed;
        }

    .login-control .login-user,
    .login-control .login-password
    {
        position: absolute;
        top: 15px;
        left: 10px;
        width: 22px;
        height: 22px;
    }

        .login-control .login-user i,
        .login-control .login-password i
        {
            font-size: 20px;
            color: #41444e;
        }

    .login-control .login-password-check
    {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 16px;
        width: 25px;
        text-align: center;
    }

        .login-control .login-password-check a
        {
            color: #2c2f39;
            font-size: 20px;
            transition: all .3s;
        }

            .login-control .login-password-check a:hover
            {
                color: #697272;
            }

    .login-control .login-captcha
    {
        position: absolute;
        top: 10px;
        right: 11px;
        font-size: 16px;
    }

        .login-control .login-captcha a
        {
            color: #2c2f39;
            padding: 2px;
            background: #ffffff;
            border-radius: 50%;
            font-size: 22px;
            transition: all .3s;
        }

            .login-control .login-captcha a:hover
            {
                color: #697272;
            }

    .login-control.login-control-captcha
    {
        background: url("../images/captcha.jpg");
    }

        .login-control.login-control-captcha .login-captcha + div
        {
            background: transparent!important;
        }

        .login-control.login-control-captcha img
        {
            height: 40px;
            width: 115px;
        }

    .login-control span
    {
        color: #ffffff;
    }

.login-button
{
    position: relative;
    display: block;
    margin-left: 30px;
    margin-right: 30px;
}

    .login-button input[type="submit"]
    {
        position: relative;
        cursor: pointer;
        font-size: 16px;
        line-height: 16px;
        font-weight: 600;
        text-transform: uppercase;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        padding: 18px 16px 16px 16px;
        border: none;
        color: #000000;
        background: #00fff8;
        -moz-transition: all .2s;
        -o-transition: all .2s;
        -webkit-transition: all .2s;
        transition: all .2s;
    }

        .login-button input[type="submit"]:hover,
        .login-button input[type="submit"]:focus,
        .login-button input[type="submit"]:active
        {
            border: none;
            color: #000000;
            background: #00e1db;
        }

        .login-button input[type="submit"].aspNetDisabled,
        .login-button input[type="submit"]:disabled
        {
            cursor: not-allowed;
        }

.login-message
{
    position: relative;
    text-align: center;
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 5px;
}

    .login-message i
    {
        padding-right: 5px;
    }

.firma
{
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    color: #ffffff;
    text-align: center;
    padding: 20px 30px;
    z-index: 3;
}

    .firma a
    {
        color: #00fff8;
        transition: all .3s;
    }

        .firma a:hover
        {
            color: #00e1db;
        }