*{ font-family: 'Lato', sans-serif; }

/** Global CSS **/
.animate{
    -webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #FFF !important;
}
input::-moz-placeholder { /* Firefox 19+ */
  color: #FFF !important;
}
input:-ms-input-placeholder { /* IE 10+ */
  color: #FFF !important;
}
input:-moz-placeholder { /* Firefox 18- */
  color: #FFF !important;
}

input.error, select.error, textarea.error{
    background: rgba(188,22,51,0.5) !important;
    color: #FFFFFF !important;
}

.text-white{
    color: #FFFFFF;
}


/** MESSAGE CSS **/
.message{
    min-width: 75%;
    max-width: 90%;
    margin: 0px auto;
    border-radius: 7px;
    text-align: center;
}


.message.error
{
    height: 35px;
    line-height: 35px;
    background: repeat rgba(215, 64, 64, 0.8);
    color: white;
}

.message.loading
{
    height: 32px;
    width: 32px;
    background: url(../img/loading-ajax-dark.gif) no-repeat left center rgba(0,0,0,0.7) !important;
    line-height: 32px;
    color: white !important;
}

.message.success
{
    height: 32px;
    width: 32px;
    line-height: 32px;
    background: url(../img/success-ajax.png) no-repeat left center !important;
    color: #00843A !important;
}



/**
 * Login CSS
**/
#wrapper{
    width: 100%;
    height: 100%;
    min-width: 980px;
}

/** CSS DEL LOGIN **/
#login{
    font-family: 'Lato', sans-serif !important;
    height: 100%;
    position: absolute;
    background: url(../img/background-scm.jpg) no-repeat left center;
    background-size: auto 100%;
    background-color: #002462;
}

#login .logo{
    margin: 3% auto 2%;
    text-align: center;
    max-width: 350px;
}

#login-form{
    margin-top: 50%;
    position: relative;
}

form{
    border-left: solid 1px #FA8865;
}

h4{ color: #454463; font-weight: lighter; font-size: 25px; }
h2{ color: #454463; font-weight: 900; font-size: 50px; }


#login-form form input{
    width: 100%;
    background: rgba(173,125,141,0.5);
    border: none;
    padding: 0px 10px;
    color: #FFF;
    height: 35px;
    line-height: 30px;
    border-radius: 5px;
    font-weight: lighter;
}

input:-webkit-autofill{
    background-color: transparent;
}

#login-form form input:focus, #login-form form button:focus{
    outline: none;
}

#login-form .message{
    font-size: 12px;
    text-align: center;
    color: white;
    background: url(../img/loading-ajax-dark.gif) no-repeat -30px center;
}

#login-form .message.error{
    background: repeat rgba(215, 64, 64, 0.8);
}


/** Modal CUSTON **/
.modal-header{
    background: #3B97D3;
    border-radius: 6px 6px 0px 0px;
    color: #FFFFFF;
}

.modal-header .close{
    color: #FFFFFF;
    opacity: 0.5;
}

.modal-header .close:hover{
    opacity: 1;
}