/*
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 : 11-feb-2019, 14:31:26
    Author     : franciscolagos
*/

.login-page, .register-page {
    background: url("../images/back.jpg") no-repeat center center fixed;
    background-size: cover;
}
.login-logo a{
    color:#09468A;
    opacity:1;
}
.login-logo{
    background-color:rgb(255,255,255);
    opacity:0.7; /* Opacidad 60% */
    margin-bottom: -10px;
}
.default-textarea{
    max-width: 100%;
    min-width: 100%;
    min-height: 100px;
}
.right-shadow{
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}
.left-up-shadow{
    -webkit-box-shadow: -9px -10px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: -9px -10px 5px 0px rgba(0,0,0,0.75);
    box-shadow: -9px -10px 5px 0px rgba(0,0,0,0.75);
}
.letter-shadow-effect
{
    position:relative;
    box-shadow:0 1px 5px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}
.letter-shadow-effect:before, .letter-shadow-effect:after
{
    content:"";
    position:absolute; 
    z-index:-1;
    box-shadow:0 0 20px rgba(0,0,0,0.8);
    top:0;
    bottom:0;
    left:10px;
    right:10px;
    border-radius:100px / 10px;
} 
.letter-shadow-effect:after
{
    right:10px; 
    left:auto; 
    transform:skew(8deg) rotate(3deg);
}