/* contenitore form */
 .box-login-el { text-align: center; padding: 10px 0 }

 .box-login-el form {
    border-width: 3px 0;
    border-style: solid;
    border-color: #c80517;
    background-color: #f1f1f1;
    padding: 0 15px 35px 15px;
    border-radius: 4px;
    position: relative;
 }
 
 /* contenitore label e input */
 .login-inputbox-el {  position: relative;  height: 33px; margin-bottom: 10px; margin-top: 10px }
 .box-login-el form label,
 .box-login-el form input { display: block }
 .box-login-el form label {
     text-align: left;
     color: #616161;
     font-size: 13px;
     cursor: text;
     position: absolute;
     bottom: 4px;
     z-index: 2;
     line-height: 100%;
     
     -webkit-transition: 0.3s ease all;
     -moz-transition: 0.3s ease all;
     -o-transition: 0.3s ease all;
     transition: 0.3s ease all;
 }
 .box-login-el form label.focus { 
     font-size: 10px;
     bottom: 22px;
 }
 .box-login-el form input {
     position: absolute;
     bottom: 0;
     z-index: 1;
     width: 100%;
     height: auto;
     border-style: solid;
     border-color: #b0adad;
     border-width: 0 0 1px 0;
     background: none;
     font-size: 15px;
     padding: 0 0 2px 0;
     
     -webkit-transition: all 1s;
     -moz-transition: all 1s;
     -o-transition: all 1s;
     transition: all 1s;
 }
 .box-login-el form input:focus { outline: none; border-bottom: 1px solid #3e95d8; background: none; }
 .box-login-el button[type=submit] {
     background-color: #d10619;
     color: #fff;
     /*font-weight: 700;*/
     font-size: 15px;
     display: block;
     height: 35px;
     width: 70%;
     line-height: 32px;
     position: absolute;
     top: auto;
     left: 50%;
     bottom: -17px;
     margin-left: -35%;
     padding: 0 10px;
     border: none;
     border-radius: 4px;
 }
 .box-login-el button[type=submit]:hover { background-color: #c80517; }
 .box-login-el button[type=submit]:focus { box-shadow: 0 0 6px 3px #ac0414 inset; outline: none }

 img.login-logo-el { width: 65px; margin-top: -35px }
 p.login-info-el { margin: 0; color: #393939; font-size: 13px; line-height: 120%}
 p.login-forgot-credentials { font-size: 11px; margin: 20px 0 0 0; }