body{
  background-image: url('images/bg.jpg');
  background-repeat: repeat;
}

.loginForm{
  background: #c4161c;
  border-radius: 32px;
  box-shadow: 0 0 50px 50px #fff;
  padding: 42px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  font-family: sans-serif;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill{
  background-color: #fff !important;
  border: none !important;
}
.txtInput{
  width: 250px;
  padding: 10px;
  background-color: #fff !important;
  border: none !important;
  text-align: left;
  color: #999 !important;
  font-size: 14px !important;
  font-weight: bold !important;
  margin-bottom: 15px;
  user-select: none;
  outline: none;
}
.txtInput::placeholder {
  font-weight: normal;
  color:#777;
  opacity: 0.4;
}
.txtInput::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-weight: normal;
  color:#777;
  opacity: 0.4;
}
.txtInput::-moz-placeholder { /* Firefox 19+ */
  font-weight: normal;
  color:#777;
  opacity: 0.4;
}
.txtInput:-ms-input-placeholder { /* IE 10+ */
  font-weight: normal;
  color:#777;
  opacity: 0.4;
}
.txtInput:-moz-placeholder { /* Firefox 18- */
  font-weight: normal;
  color:#777;
  opacity: 0.4;
}
.btnLogin{
  color: #fff;
  padding: 14px;
  width: 270px;
  background-color: #777;
  font-size: 14px !important;
  font-weight: bold !important;
  cursor: pointer;
  user-select: none;
  margin-top: 16px;
  border: none;
}
.btnLogin:hover{
  background-color: #444;
}
.error{
  position: absolute;
  bottom: 26px;
  font-weight: normal;
  text-align: center;
  left: 87px;
  color: #fb9c33;
}

.headerBox {
  width: 100%;
  top:50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.headerBox .hl {
  width: 300px;
  height: 4px;
  background-color: #777;
  margin: 0 16px;
}

.comTxt1 {
  width: 100%;
  text-align: center;
  color: #000;
  font-family: sans-serif;
}
.comTxt2 {
  width: 100%;
  text-align: center;
  color: #c4161c;
  font-family: tahoma;
  font-size: 14px;
  font-weight: bold;
}

.supportMail {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px;
  background-color: #444;
  color: #fff;
  bottom: 16px;
  border-radius: 10px;
}

@media screen and (max-height: 650px) {
  .loginForm {
    box-shadow: none;
  }
}

@media screen and (max-height: 520px) {
  .comTxt2 {
    display: none;
  }
}

@media screen and (max-height: 475px) {
  .comTxt1 {
    display: none;
  }
}

@media screen and (max-height: 435px) {
  .headerBox, .headerBox .hl {
    display: none;
  }
}

@media screen and (max-height: 300px) {
  .supportMail {
    display: none;
  }
}

