* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  font-family: Arial;
  background-color: #3498DB;
  padding: 50px 0;
}

.login {
  margin: 20px auto;
  width: 400px;
}

.login-screen {
  background-color: #FFF;
  padding: 20px;
  border-radius: 5px
}

.app-title {
  text-align: center;
  color: #777;
}

.login-form {
  text-align: center;
}
.control-group {
  margin-bottom: 10px;
}

input {
  text-align: center;
  background-color: #ECF0F1;
  border: 2px solid transparent;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 200;
  padding: 10px 0;
  width: 350px;
  transition: border .5s;
}

.mesageLipsa { 
  text-align: center;
  font-size: 16px;
  font-weight: 200;
  padding: 10px 0;
  width: 250px;
}

input:focus {
  border: 2px solid #3498DB;
  box-shadow: none;
}

.btn {
  border: 2px solid transparent;
  background: #3498DB;
  color: #ffffff;
  font-size: 16px;
  line-height: 25px;
  padding: 10px 0;
  text-decoration: none;
  text-shadow: none;
  border-radius: 3px;
  box-shadow: none;
  transition: 0.25s;
  display: block;
  width: 250px;
  margin: 0 auto;
}

.btn:hover {
  background-color: #2980B9;
}

.login-link {
  font-size: 12px;
  color: #444;
  display: block;
  margin-top: 12px;
}

.imageLoginSize { 
  height: auto;
  width: auto;
  max-width: 260px;
  max-height: 70px;
}

.control {
  border: 2px solid transparent;
  padding: 3px;
  margin-right: 5px;
  border-radius: 3px;
  transition: border .25s;
}

.control:hover {
 border: 2px solid #3498DB;
}

/* tablet narrow
@media only screen and (max-width: 980px) {
  .login {
    width: 40%;
  }

  .login-screen {
    padding: 3%;
  }

  input, .btn, .mesageLipsa, .imageLoginSize{
    width: 80%;
  }
}*/

/* tablet intermediate
@media only screen and (max-width: 780px){
  .login, .imageLoginSize {
    width: 60%;
  }
} */

/* mobile narrow
@media only screen and (max-width: 480px) {
  .login, input, .btn, .mesageLipsa, .imageLoginSize {
    width: 70%;
  }
}*/

.colorErr {
  color: red;
  text-align: center;
}




.info, .success, .warning, .error, .validation {
  border: 1px solid;
  margin: 10px 0px;
  padding: 15px 10px 15px 50px;
  background-repeat: no-repeat;
  background-position: 10px center;
  text-align: left;
  border-radius: 3px;
}

.info {
  color: #00529B;
  background-color: #BDE5F8;
  background-image: url('../images/icon_info.png');
}

.success {
  color: #4F8A10;
  background-color: #DFF2BF;
  background-image: url('../images/icon_ok.png');
}

.warning {
  color: #9F6000;
  background-color: #FEEFB3;
  background-image: url('../images/icon_warning.png');
}

.error{
  color: #D8000C;
  background-color: #FFBABA;
  background-image: url('../images/icon_error.png');
}

.validation{
  color: #D63301;
  background-color: #FFCCBA;
  background-image: url('../images/icon_error.png');
}


/*loading stuff*/
#loadingmsg {
  color: black;
  background: #fff;
  padding: 10px;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 100;
  margin-right: -25%;
  margin-bottom: -25%;
  font-size: 14px;
}
#loadingover {
  background: black;
  z-index: 99;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
}


/*TODO trebuie analizate tot ce s-a tot pus aici, nu cred ca mai sunt toate de actualitate*/