/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Nov 14, 2019, 16:44:34 PM
    Author     : Lucas Lacroix
*/

#panel-principal {
    height: 100%;
} 

.login-container-entrega{
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: white;

    background: #820ad1;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #820ad1, #340454);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #820ad1, #340454); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */


}

.transition-login {
    transform-origin: 0 0;
    animation: loginTransition .3s linear forwards;
}

.form-login-entrega {
    width: 100%;
    max-width: 364px;

    padding: 30px;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;

    text-align: center;

    background-color: rgba(0, 0, 0, .2);

    border-radius: 5px;
}


.form-login-entrega > .login-title-block {
    margin: 0 0 30px;
}

.login-title {
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    font-family: 'Montserrat', Helvetica, sans-serif;
    line-height: 1.5;
}

.login-title span {
    color: #449eda;
    font-weight: 900;
}


.login-title span img {
        width: 175px;
}


.form-login-entrega > input.ui-state-focus,
.form-login-entrega > input.ui-state-hover,
.form-login-entrega > input.ui-state-default,
.form-login-entrega > input.ui-state-active,
.form-login-entrega > input.ui-state-disabled,
.form-login-entrega > input.ui-state-error,
.form-login-entrega > input.ui-state-highlight  {
    background: rgba(0, 0, 0, .08); 

    box-shadow: none;
    border: 0;
    outline: 0;

    color: white !important;
} 


.form-login-entrega > input {    
    height: 45px;
    padding: 0 15px !important;
    margin-bottom: 15px;

    text-align: center;
    text-transform: uppercase;

    font-size: 16px;
    font-weight: bolder;
    color: white;

    background: rgba(0, 0, 0, .08); 

    border: 0;
    outline: 0;
}

.form-login-entrega > input::placeholder {
    font-size: 14px;
    font-weight: normal;

    text-align: left;
    text-transform: none;

    color: rgba(255, 255, 255, .5);
}


.form-login-entrega > button.ui-state-focus,
.form-login-entrega > button.ui-state-hover,
.form-login-entrega > button.ui-state-default,
.form-login-entrega > button.ui-state-active,
.form-login-entrega > button.ui-state-disabled,
.form-login-entrega > button.ui-state-error,
.form-login-entrega > button.ui-state-highlight{    
    box-shadow: none !important;
    border: 0;
    outline: 0;
} 

.form-login-entrega > button.ui-state-focus > span,
.form-login-entrega > button.ui-state-hover > span,
.form-login-entrega > button.ui-state-default > span,
.form-login-entrega > button.ui-state-active > span,
.form-login-entrega > button.ui-state-disabled > span,
.form-login-entrega > button.ui-state-error > span,
.form-login-entrega > button.ui-state-highlight > span {

    background: transparent !important;

    box-shadow: none !important;
    border: 0;
    outline: 0;
}

.form-login-entrega > button{ 
    height: 45px;
    font-size: 16px;
    margin-top: 15px;
    border: 0;
    box-shadow: none !important;
}

.form-login-entrega > button > span{ 
    border: 0;
    outline: 0;
    background: transparent;
}


@keyframes loginTransition {
    0% {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    25% {
        border-bottom-right-radius: 25%;
        border-top-right-radius: 25%;
        border-bottom-left-radius: 25%;
    }

    50% {    
        border-bottom-right-radius: 50%;
        border-top-right-radius: 50%;
        border-bottom-left-radius: 50%;
    }

    100% {
        border-bottom-right-radius: 50%;
        border-top-right-radius: 50%;
        border-bottom-left-radius: 50%;
        transform: scale(0);
    }
}