@font-face {
  font-family: 'Titillium';
  src: url('../fonts/titillium-regular.woff2');
  font-weight: normal;
  font-style: normal;
}

* {
  font-family: Titillium;
}

body {
  display: grid;
  grid-template-rows: 1fr auto;
  justify-content: center;
  align-items: center;
  border-top: 5px solid #D61E38;
  border-bottom: 5px solid #D61E38;
  height: 100vh;
  background-color: #FECB00;
  flex-direction: column;
}

.login-mobile.login-container{
  max-width: 320px;
  margin: 0 auto;
  margin-top: 20px;
  width: 90%;
  /*margin-top: 50px;*/
}

.login-input-information {
  color: black;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}

.login-container.login-desktop {
    max-width: 500px;
    box-shadow: #B5142E 0px 0px 20px 0px;
    background-color: white;
    padding: 40px 0;
    align-self: center;
}

.login-select-language {
  background-color: #043c5a;
  color: white;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 16px;
}

.login-select-language.disabled {
  background-color: lightgray;
}

.login-select-language:hover {
  cursor: pointer;
}

.login-select-language.disabled:hover {
  cursor: not-allowed;
}

/*.login-footer{
  padding: 40px 0 5px;
}*/

.logo-login{
  width: 100%;
}

.logo-login2{
  width: 100%;
  max-width: 185px;
  margin-top: 40px;
}

.login-header img {
  max-width: 120px;
}

.login-desktop .login-header img {
  max-width: 150px;
}

input, select{
  /*border-radius: 5px !important;*/
  background-color:rgb(255,255,255) !important;
  border:2px solid #aaa5a5 !important;
  height: 48px !important;
  box-shadow: none !important;
  width: 100%;
  border-radius: 0 !important;
  font-family: Titillium;
}

.tooltip-inner {
  background-color: #3c647d;
  max-width: 250px;
  width: 250px; 
}

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-bottom-color: #3c647d; /* black */
  border-width: 0 5px 5px;
}

/*input[type="text"]{
  padding-left: 40px;
}*/

/*input[type="password"]{
  margin-top: 15px !important;
  padding-left: 40px;
}*/

.login-modal{
  width: 254px;
  margin: 0px auto;
}

.login-reset{
  padding: 20px 0;
  text-align: right;
}
.login-reset > a, .reset-login > a {
  color: #000 !important;
}
.logo{
  text-align: center;
  margin-bottom: 40px;
  padding-right: 20px;
  padding-left: 20px;
}

.login-desktop .logo {
  padding-top: 20px;
}

.logo > img {
    width: 100%;
    height: auto;
}

.login-desktop .logo > img {
    width: 60%;
    height: auto;
}

#div-forms {
  padding-right: 20px;
  padding-left: 20px;
}

.login-desktop #div-forms {
  width: 390px;
  margin: 0 auto;
}

.log-icon{
  position: relative;
  top: 29px;
  left: 4px;
  float: left;
  width: 22px;
  height: auto;
}

.login-title{
  font-size: 18px;
  font-family: Titillium;
  font-weight: bold;
  color: #000;
  text-align: left;
  padding-top: 20px;
}

.field-icon {
  float: right;
  left: -3px;
  margin-top: -30px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.login-btn{
  font-family: Titillium, Arial, Helvetica, sans-serif;
  background-color: #d61e38;
  padding: 10px 45px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  width: 90%;
  margin-left: 5%;
  position: relative;
  border: 0;
  height: 72px;
}

.login-btn:hover {
  background: #b5142e;
  border: 1px solid #b5142e;
  color: #fff;
}

.modal.fade .modal-dialog {
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -ms-transform: scale(0.1);
    transform: scale(0.1);
    top: 55%;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.modal.fade.in .modal-dialog {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform: translate3d(0, -300px, 0);
    transform: translate3d(0, -300px, 0);
    opacity:1;
}

.modal-backdrop{
  opacity: 0 !important;
}

/*#login-modal input[type=text], input[type=password] {
	margin-top: 10px;
}*/

#div-login-msg,
#div-lost-msg,
#div-register-msg {
    border: 1px solid #dadfe1;
    height: 30px;
    line-height: 28px;
    transition: all ease-in-out 500ms;
}

#div-login-msg.success,
#div-lost-msg.success,
#div-register-msg.success {
    border: 1px solid #68c3a3;
    background-color: #c8f7c5;
}

#div-login-msg.error,
#div-lost-msg.error,
#div-register-msg.error {
    border: 1px solid #eb575b;
    background-color: #ffcad1;
}

#icon-login-msg,
#icon-lost-msg,
#icon-register-msg {
    width: 30px;
    float: left;
    line-height: 28px;
    text-align: center;
    background-color: #dadfe1;
    margin-right: 5px;
    transition: all ease-in-out 500ms;
}

#icon-login-msg.success,
#icon-lost-msg.success,
#icon-register-msg.success {
    background-color: #68c3a3 !important;
}

#icon-login-msg.error,
#icon-lost-msg.error,
#icon-register-msg.error {
    background-color: #eb575b !important;
}

#img_logo {
    max-height: 100px;
    max-width: 100px;
}

/* #########################################
   #    override the bootstrap configs     #
   ######################################### */

.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .8;
}

.modal-content {
    background-color: #ececec;
    border: 1px solid #bdc3c7;
    border-radius: 0px;
    outline: 0;
}

.modal-header {
    min-height: 16.43px;
    padding: 15px 15px 15px 15px;
    border-bottom: 0px;
}

.modal-body {
    position: relative;
    padding: 5px 15px 5px 15px;
}

.modal-footer {
    padding: 15px 15px 15px 15px;
    text-align: left;
    border-top: 0px;
}

.checkbox {
    margin-bottom: 0px;
}

.btn {
    border-radius: 0px;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: none;
}

.btn-lg, .btn-group-lg>.btn {
    border-radius: 25px;
}

.btn-link {
    padding: 5px 10px 0px 0px;
    color: #95a5a6;
}

.btn-link:hover, .btn-link:focus {
    color: #2c3e50;
    text-decoration: none;
}

.glyphicon {
    top: 0px;
}

.form-control {
  color: #000;
}

.reset-container{
  width: 293px;
  margin: 0 auto;
  margin-top: 150px;
}

.reset-title{
  font-size: 19px;
  font-family: Poppins;
  color: #222222;
  text-align: center;
  padding: 20px 0 20px;
}


.reset-text{
  text-align: center;
  font-size: 16px;
}

.reset-input{
  margin: 20px 0;
  padding: 6px 12px !important; 
  font-size: 18px;
}

.reset-btn:disabled{
  opacity: 0.7;
}

.reset-text-no-valid{
  text-align: center;
  position: relative;
  margin-bottom: 100px;
  padding-top: 130px;
}

.reset-password{
  margin-top: 0;
  margin-bottom: 20px;
}

.reset-login {
  text-align: center;
  margin-top: 20px;
}