﻿@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,100);

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    position: relative;
    background: rgb(91,119,148); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(91,119,148,1) 67%, rgba(125,135,145,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(91,119,148,1) 67%,rgba(125,135,145,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(91,119,148,1) 67%,rgba(125,135,145,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5b7794', endColorstr='#7d8791',GradientType=0 ); /* IE6-9 */
    font-family: 'Roboto', sans-serif;
}

.thumbur {
    width: 150px;
    height: 150px;
    position: relative;
    /* background-color: #efefef; */
    filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FFEFEFEF', endColorstr='#FFE1E1E1');
    margin: auto;
    border-radius: 10%;
}

    .thumbur:before {
        content: '';
        position: absolute;
        width: 6px;
        height: 12px;
        background-color: #efefef;
        left: 50%;
        bottom: 50px;
        z-index: 5;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        border-bottom-left-radius: 2px;
        border-bottom-right-radius: 2px;
    }

.icon-lock {
    position: relative;
    width: 80px;
    height: 60px;
    background: #FFA000;
    margin: auto;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
    border-radius: 8px;
    -webkit-box-shadow: 0 0 2px #F57C00 inset;
    box-shadow: 0 0 2px #F57C00 inset;
}

    .icon-lock:after {
        content: '';
        position: absolute;
        width: 50px;
        height: 35px;
        border: 9px solid #F57C00;
        border-bottom: none;
        bottom: 100%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
    }

    .icon-lock:before {
        content: '';
        position: absolute;
        width: 12px;
        height: 12px;
        background-color: #efefef;
        left: 50%;
        top: 20px;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        border-radius: 100%;
    }

.panel-lite {
    margin: 20px auto;
    max-width: 360px;
    background: #fff;
    padding: 45px 20px;
    border-radius: 4px;
    -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    box-shadow: -1px 59px 81px 2px rgba(0,0,0,0.2) !important;
}

    .panel-lite h4 {
        font-weight: 400;
        font-size: 24px;
        text-align: center;
        color: #5b7794;
        margin: 15px auto;
    }

    .panel-lite a {
        display: inline-block;
        margin-top: 25px;
        text-decoration: none;
        color: #5b7794;
        font-size: 14px;
    }

.form-group {
    position: relative;
    font-size: 15px;
    color: #666;
}

    .form-group + .form-group {
        margin-top: 30px;
    }

    .form-group .form-label {
        position: absolute;
        z-index: 1;
        left: 0;
        top: 5px;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .form-group .form-control {
        width: 95%;
        position: relative;
        z-index: 3;
        height: 35px;
        background: none;
        border: none;
        padding: 5px 0;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        border-bottom: 1px solid #777;
    }

        .form-group .form-control:invalid {
            outline: none;
        }

        .form-group .form-control:focus, .form-group .form-control:valid {
            outline: none;
            color: #5b7794;
            -webkit-box-shadow: 0 1px #5b7794;
            box-shadow: 0 1px #5b7794;
            border-color: #5b7794;
            width: 90%
        }

            .form-group .form-control:focus + .form-label, .form-group .form-control:valid + .form-label {
                font-size: 12px;
                -webkit-transform: translateY(-15px);
                transform: translateY(-20px);
            }

.floating-btn {
    background: #5b7794;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    font-size: 32px;
    border: none;
    position: absolute;
    margin: auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: 1px 0px 0px rgba(0, 0, 0, 0.3) inset;
    box-shadow: 1px 0px 0px rgba(0, 0, 0, 0.3) inset;
    margin: auto;
    right: -30px;
    bottom: 90px;
    cursor: pointer;
}

    .floating-btn:hover {
        -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.3) inset, 0 3px 6px rgba(0, 0, 0, 0.16), 0 5px 11px rgba(0, 0, 0, 0.23);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0.3) inset, 0 3px 6px rgba(0, 0, 0, 0.16), 0 5px 11px rgba(0, 0, 0, 0.23);
    }

        .floating-btn:hover .icon-arrow {
            -webkit-transform: rotate(45deg) scale(1.2);
            transform: rotate(45deg) scale(1.2);
        }

    .floating-btn:focus, .floating-btn:active {
        outline: none;
    }

.icon-arrow {
    position: relative;
    width: 13px;
    height: 13px;
    border-right: 3px solid #fff;
    border-top: 3px solid #fff;
    display: block;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

    .icon-arrow:after {
        content: '';
        position: absolute;
        width: 18px;
        height: 3px;
        background: #fff;
        left: -5px;
        top: 5px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

.animate-left {
    position: relative;
    animation: animateleft 1.4s
}

@keyframes animateleft {
    from {
        left: -500px;
        opacity: 0
    }

    to {
        left: 0;
        opacity: 1
    }
}


.animate-right {
    position: relative;
    animation: animateright 1.4s
}

@keyframes animateright {
    from {
        right: -300px;
        opacity: 0
    }

    to {
        right: 0;
        opacity: 1
    }
}

.animate-fim {
    position: relative;
    animation: animatefim 1.9s
}

@keyframes animatefim {
    from {
        left: 0;
        opacity: 1
    }

    to {
        left: 400px;
        opacity: -1
    }
}


.lds-ring {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

    .lds-ring div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 51px;
        height: 51px;
        margin: 6px;
        border: 6px solid #fff;
        border-radius: 50%;
        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: #fff transparent transparent transparent;
    }

        .lds-ring div:nth-child(1) {
            animation-delay: -0.45s;
        }

        .lds-ring div:nth-child(2) {
            animation-delay: -0.3s;
        }

        .lds-ring div:nth-child(3) {
            animation-delay: -0.15s;
        }

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
