@charset "UTF-8";

.title-default:after{
  content: '';
  width: 70px;
  height: 1.3px;
  background-color: red;
  position: absolute;
  bottom: -5px;
  left: 0;
}
.h1-df:after{ display: none; }
.pag-auth{
  padding: 50px 0;
}
.pag-auth .form-auth .c-grid,
.pag-auth .form-auth #appbundle_user_password{
  display: flex;
}
.pag-auth .form-auth .c-input{
  width: 100%;
}
.pag-auth .form-auth .w-1{
  min-width: 200px;
  max-width: 200px;
}
.pag-auth .form-auth .w-2{
  min-width: 300px;
  max-width: 300px;
}
.pag-auth .form-auth .w-3{
  min-width: 400px;
  max-width: 400px;
}
.pag-auth .form-auth #appbundle_user_password{
  justify-content: space-between;
}
.pag-auth .form-auth #appbundle_user_password div{
  width: calc(50% - 10px);
}
.pag-auth .form-auth .mr-reset{ margin-right: 25px; }
.pag-auth .form-auth label{
  font-size: 15px;
  color: #4b4b4b;
  cursor: pointer;
  margin-bottom: 6px;
  display: block;
  font-weight: 500;
}
.pag-auth .form-auth label sup{
  position: relative;
  top: 2px;
  left: 2px;
  color: #ec5656;
}
.pag-auth .form-auth input,
.pag-auth .form-auth select{
  outline: none;
  background-color: #f8f8f8;
  border-radius: 14px;
  width: 100%;
  height: 60px;
  border: 0;
  font-size: 16px;
  color: #5b5b5b;
  padding: 0 20px;
  margin-bottom: 25px;
  transition: all 0.5s ease;
  font-family: 'Poppins', sans-serif !important;
}
.pag-auth .form-auth select{
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-repeat: no-repeat;
  background-position-x: calc(100% - 13px);
  background-position-y: 50%;
  background-size: 15px;
  background-image: url(../../../../images/i-arrow2.png);
}
.pag-auth .form-auth input:-webkit-autofill,
.pag-auth .form-auth input:-webkit-autofill:hover, 
.pag-auth .form-auth input:-webkit-autofill:focus,
.pag-auth .form-auth select:-webkit-autofill,
.pag-auth .form-auth select:-webkit-autofill:hover,
.pag-auth .form-auth select:-webkit-autofill:focus{
  -webkit-text-fill-color: #5b5b5b;
  -webkit-box-shadow: 0 0 0px 1000px #f8f8f8 inset;
  transition: background-color 5000s ease-in-out 0s;
}
.pag-auth .form-auth input::placeholder,
.pag-auth .form-auth select::placeholder{
  color: #8e8e8e;
  font-family: 'Poppins', sans-serif !important;
}
.pag-auth .form-auth input:disabled,
.pag-auth .form-auth select:disabled{
  opacity: 0.5;
  cursor: no-drop;
}
.pag-auth .form-auth button{
  cursor: pointer;
  background: #ff1a1a;
  color: #ffffff;
  border-radius: 8px;
  height: 56px;
  min-width: 281.25px;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 0;
  width: max-content;
  font-family: 'Poppins', sans-serif !important;
  padding: 0 30px;
}
.pag-auth .form-auth button:hover,
.pag-auth .form-auth button:focus{
  background-color: #df1616;
}
.pag-auth .form-auth button span{
  animation: blinker 1.5s infinite;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
}
.pag-auth .form-auth button .fa-spinner{
  width: 26px;
  left: -7px;
  position: relative;
}
.pag-auth .select-img{
  position: relative;
  margin-bottom: 30px;
}
.pag-auth .select-img input{
  text-indent: -5000px;
  overflow: hidden;
  position: absolute;
  top: 21px;
  z-index: -8;
}
.pag-auth .select-img small{
  text-align: center;
  display: block;
}
.pag-auth .select-img .count-itens{
  opacity: 0;
  position: absolute;
  bottom: -15px;
  width: 30px;
  height: 30px;
  background-color: #0062FF;
  display: flex;
  justify-content: center;
  align-items: center;
  right: -15px;
  border-radius: 100%;
  border: 3px solid #FFFFFF;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.5s ease;
  box-shadow: 0 0 0 0 #0062FF;
  animation: pulse 1.4s cubic-bezier(.66,0,0,1) infinite;
}
.pag-auth .select-img .count-itens.ativo{
  opacity: 1;
}
.pag-auth .select-img label{
  background-color: #707070;
  border-radius: 14px;
  width: 100%;
  height: 60px;
  border: 0;
  font-size: 14.5px;
  color: #FFFFFF;
  padding: 0 20px;
  transition: all 0.5s ease;
  font-family: 'Poppins', sans-serif !important;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.pag-auth .select-img label:hover,
.pag-auth .select-img label:visited,
.pag-auth .select-img label:active{
  background-color: #5a5a5a;
}

/* Action Efects */
.pag-auth .form-auth button{
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/* Media Query */
@media screen and (min-width: 980px) and (max-width: 1090px){}
@media (max-width: 960px){
  .pag-auth .form-auth .c-grid,
  .pag-auth .form-auth #appbundle_user_password{
    flex-direction: column;
  }
  .pag-auth .form-auth .w-1{
    min-width: 100%;
    max-width: 100%;
  }
  .pag-auth .form-auth .w-2{
    min-width: 100%;
    max-width: 100%;
  }
  .pag-auth .form-auth .w-3{
    min-width: 100%;
    max-width: 100%;
  }
  .pag-auth .form-auth #appbundle_user_password div{
    width: 100%;
  }
}