﻿body.login {
    color: #7F7F7F;
}

    body.login.blue {
        background: url("../images/bg_1.png") rgba(0, 0, 0, 0) !important;
        background-color: rgba(0, 0, 0, 0);
    }

    body.login.cream {
        background: url("../images/bg_2.png") rgba(0, 0, 0, 0) !important;
        background-color: rgba(255, 255, 255, 0);
    }

.awesome-login {
    height: 50%;
    position: absolute;
    bottom: 40%;
    left: 15%;
    right: 15%;
    margin: auto;
}

.info {
    text-align: center;
}

    .info i {
        color: #6574cc;
    }

.logo i {
    font-size: 20px;
    color: #6574cc;
}

.form {
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    opacity: 0.7;
    max-width: 300px;
    margin: 0 auto 100px;
    padding: 30px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    text-align: center;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.32);
}

    .form .thumbnail {
        width: 150px;
        height: 150px;
        margin: 0 auto 30px;
        border-top-left-radius: 100%;
        border-top-right-radius: 100%;
        border-bottom-left-radius: 100%;
        border-bottom-right-radius: 100%;
        box-sizing: border-box;
    }

    .form input {
        outline: 0;
        background: #f2f2f2;
        width: 100%;
        border: 0;
        margin: 0 0 15px;
        /*padding: 15px;*/
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px;
        box-sizing: border-box;
        font-size: 14px;
    }

    .form button {
        outline: 0;
        background: #EF3B3A;
        width: 100%;
        border: 0;
        padding: 15px;
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px;
        color: #FFFFFF;
        font-size: 14px;
        -webkit-transition: all 0.3 ease;
        transition: all 0.3 ease;
        cursor: pointer;
    }

    .form .message {
        margin: 15px 0 0;
        color: #b3b3b3;
        font-size: 12px;
    }

        .form .message a {
            color: #EF3B3A;
            text-decoration: none;
        }

    .form .register-form {
        display: none;
    }

.container {
    position: relative;
    z-index: 1;
    max-width: 300px;
    margin: 0 auto;
}

    .container:before, .container:after {
        content: "";
        display: block;
        clear: both;
    }

    .container .info {
        margin: 50px auto;
        text-align: center;
    }

        .container .info h1 {
            margin: 0 0 15px;
            padding: 0;
            font-size: 36px;
            font-weight: 300;
            color: #1a1a1a;
        }

        .container .info span {
            color: #4d4d4d;
            font-size: 12px;
        }

            .container .info span a {
                color: #000000;
                text-decoration: none;
            }

            .container .info span .fa {
                color: #EF3B3A;
            }

@media (min-width: 768px) {
}

@media (max-width: 768px) {
    .awesome-login {
        /*margin-left: 30px;
        margin-right: 30px;*/
        bottom: 40%;
    }

    .form {
        padding: 10px;
    }

    .container .info h1 {
        margin: 0 0 0;
        padding: 0;
        font-size: 20px;
    }

    #cover {
        display: none;
    }
}

.box-login-new {
    background: #FFFFFF;
    opacity: 0.8;
    border-radius: 5px;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.32);
    overflow: hidden;
    padding: 15px;
}

*[class^='circle-blue'], *[class*=' circle-blue'] {
    -moz-border-radius: 50px;
    border-radius: 50%;
    padding: 5px;
    /*color="#f4844e"*/
    border: 3px solid #f4844e;
}

.circle-blue-double {
    box-shadow: 0 0 0 5px hsl(0, 0%, 80%), 0 0 0 10px #f4844e;
}

.cover {
    object-fit: contain;
    width: 145px !important;
    height: 145px !important;
}

    .cover:hover {
        animation: spin 0.8s ease-in-out;
        -webkit-animation: spin 0.8s ease-in-out;
        -moz-animation: spin 0.8s ease-in-out;
        -ms-animation: spin 0.8s ease-in-out;
        -o-animation: spin 0.8s ease-in-out;
        cursor: pointer;
    }

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes spin {
    from {
        -o-transform: rotate(0deg);
    }

    to {
        -o-transform: rotate(360deg);
    }
}


.spinner {
    opacity: 0;
    display: none;
    width: 20px;
    height: 10px;
    -webkit-transition: opacity 0.25s, max-width 0.45s;
    -moz-transition: opacity 0.25s, max-width 0.45s;
    -o-transition: opacity 0.25s, max-width 0.45s;
    transition: opacity 0.25s, max-width 0.45s;
    right: 20%;
    position: absolute;
}

.has-spinner.active {
    cursor: progress;
}

    .has-spinner.active .spinner {
        display: inline-block;
        opacity: 1;
        max-width: 50px;
    }
