* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

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

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

.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: 250px;
  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: 50px;
}

.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');
}
/* used in extensions for dialog */
.fullHeightDialog .sapMDialogScroll {
  height: 100%!important;   
}
/*TODO trebuie analizate tot ce s-a tot pus aici, nu cred ca mai sunt toate de actualitate*/