﻿body, p, label, span, td, th {
  font-family: "Poppins", sans-serif;
}

.logo-sic {
  margin: 15px 0 0;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
}
.logo-sic img {
  width: 60px;
  height: 29px;
}
.logo-sic p.lbl-projeto {
  margin-bottom: 0;
  padding-left: 25px;
  position: relative;
  font-weight: 700;
  display: block;
  line-height: 41px;
  font-size: 23px;
}
.logo-sic p.lbl-projeto:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #f3123c;
  border-radius: 50%;
  position: absolute;
  bottom: 15px;
  left: 9px;
}

p.area-adm {
  color: #fff;
}

.card-login {
  max-width: 580px;
  padding: 40px;
  background-color: #fff;
  margin: 0 auto;
  border-radius: 8px;
  border: none;
}

input.form-control {
  border-radius: 8px;
  border: 2px solid #ECEDF2;
  height: 56px;
  font-size: 16px;
}
input.form-control:focus, input.form-control:active {
  outline: none;
  box-shadow: none;
  border-color: #2E2D37;
}

button#btnLogar {
  border-radius: 8px;
  color: #fff;
  height: 56px;
  min-height: 56px;
  font-size: 16px;
}

input.form-control {
  color: #2E2D37;
  padding-left: 45px;
}

button#btnLogar {
  background-color: #F3123C;
  border: none;
}
button#btnLogar:active {
  background-color: #c80a2e;
}

.form-group {
  position: relative;
}
.form-group.login:after {
  content: "";
  background-image: url(../images/icons/login.svg) !important;
  background-repeat: no-repeat;
  background-position: 10px center;
  display: flex;
  width: 40px;
  height: 30px;
  position: absolute;
  top: 12px;
}
.form-group.senha:after {
  content: "";
  background-image: url("../images/icons/closed.svg") !important;
  background-repeat: no-repeat;
  background-position: 15px center;
  display: flex;
  width: 40px;
  height: 30px;
  position: absolute;
  top: 12px;
}

.form-pass-bg {
  /*background-image: url('../images/icons/closed.svg') !important;
  background-repeat: no-repeat;
  background-position: 10px center;*/
}

span.field-validation-error {
  position: absolute;
  width: 100%;
  left: 0;
  font-size: 13px;
  top: 0;
  z-index: -1;
  padding: 32px 0 2px;
  border-radius: 30px;
}

.text-danger {
  color: #fff !important;
  background-color: #9B51E0 !important;
}

.input-validation-error {
  margin-bottom: 55px;
  ransition: border-color 2s linear 0.2s;
  border-color: #9B51E0 !important;
}

.input-validation-error + span.field-validation-error {
  position: absolute;
  width: 100%;
  left: 0;
  font-size: 13px;
  top: 60px;
  z-index: 0;
  padding: 5px 0 2px;
  border-radius: 8px 8px;
  -webkit-animation: kf_shake 0.4s 1 linear;
  -moz-animation: kf_shake 0.4s 1 linear;
  -o-animation: kf_shake 0.4s 1 linear;
}

.ahashakeheartache {
  -webkit-animation: kf_shake 0.4s 1 linear;
  -moz-animation: kf_shake 0.4s 1 linear;
  -o-animation: kf_shake 0.4s 1 linear;
}

.campos {
  height: 45px;
  width: 42px;
  border-radius: 6px;
  outline: none;
  text-align: center;
  border: 1px solid #ddd;
  margin-right: 10px;
}

@-webkit-keyframes kf_shake {
  0% {
    -webkit-transform: translate(30px);
  }
  20% {
    -webkit-transform: translate(-30px);
  }
  40% {
    -webkit-transform: translate(15px);
  }
  60% {
    -webkit-transform: translate(-15px);
  }
  80% {
    -webkit-transform: translate(8px);
  }
  100% {
    -webkit-transform: translate(0px);
  }
}
@-moz-keyframes kf_shake {
  0% {
    -moz-transform: translate(30px);
  }
  20% {
    -moz-transform: translate(-30px);
  }
  40% {
    -moz-transform: translate(15px);
  }
  60% {
    -moz-transform: translate(-15px);
  }
  80% {
    -moz-transform: translate(8px);
  }
  100% {
    -moz-transform: translate(0px);
  }
}
@-o-keyframes kf_shake {
  0% {
    -o-transform: translate(30px);
  }
  20% {
    -o-transform: translate(-30px);
  }
  40% {
    -o-transform: translate(15px);
  }
  60% {
    -o-transform: translate(-15px);
  }
  80% {
    -o-transform: translate(8px);
  }
  100% {
    -o-origin-transform: translate(0px);
  }
}
#loading {
  position: fixed;
  z-index: 99999999;
  width: 100%;
  height: 100vh;
  display: none;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 46, 101, 0.8);
  background-size: 150px;
  background-image: url("../images/loading/loading_2final.gif");
}
