



/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/poppins/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/poppins/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: Montserrat-Bold;
  src: url('../fonts/montserrat/Montserrat-Bold.ttf'); 
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: Poppins-Regular, sans-serif;
}

/*---------------------------------------------*/
a {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
  color: #57b846;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}


/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #999999; }
input:-moz-placeholder { color: #999999; }
input::-moz-placeholder { color: #999999; }
input:-ms-input-placeholder { color: #999999; }

textarea::-webkit-input-placeholder { color: #999999; }
textarea:-moz-placeholder { color: #999999; }
textarea::-moz-placeholder { color: #999999; }
textarea:-ms-input-placeholder { color: #999999; }

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-family: Poppins-Regular;
  font-size: 13px;
  line-height: 1.5;
  color: #999999;
}

.txt2 {
  font-family: Poppins-Regular;
  font-size: 13px;
  line-height: 1.5;
  color: #666666;
}


/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.16), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(0,80,45,.20), transparent 34%),
    linear-gradient(135deg, #087a48 0%, #00a85a 52%, #00c96b 100%);
}

.wrap-login100 {
  width: 880px;
  min-height: 500px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #e4ebe6;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(25, 45, 34, .10);
  padding: 0;
}

.login100-pic {
  width: 44%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px;
  background:
    linear-gradient(145deg, rgba(0,200,83,.08), rgba(0,200,83,.015));
  border-right: 1px solid #edf1ee;
}

.login100-pic img {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
}

.login100-form {
  width: 56%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 64px;
}

.login100-form-title {
  width: 100%;
  display: block;
  padding-bottom: 34px;
  font-family: Poppins-Bold;
  font-size: 26px;
  line-height: 1.2;
  text-align: left;
  color: #17231d;
}

.wrap-input100 {
  position: relative;
  width: 100%;
  z-index: 1;
  margin-bottom: 14px;
}

.input100 {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 16px 0 48px;
  border: 1px solid #dce4df;
  border-radius: 9px;
  background: #fbfcfb;
  font-family: Poppins-Medium;
  font-size: 14px;
  line-height: 1.5;
  color: #2a3730;
  transition: .18s ease;
}

.input100:focus {
  border-color: #00a651 !important;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,166,81,.08);
}

.focus-input100 {
  display: none;
}

.symbol-input100 {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  pointer-events: none;
  color: #84918a;
  font-size: 15px;
  transition: .18s ease;
}

.input100:focus + .focus-input100 + .symbol-input100 {
  color: #00a651;
  padding-left: 0;
}

.container-login100-form-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 14px;
}

.login100-form-btn {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border-radius: 9px;
  background: #079452;
  font-family: Montserrat-Bold;
  font-size: 13px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .2px;
  transition: .18s ease;
}

.login100-form-btn:hover {
  background: #067b45;
  box-shadow: 0 5px 14px rgba(7,148,82,.18);
}

.txt2 {
  font-family: Poppins-Regular;
  font-size: 12px;
  line-height: 1.5;
  color: #748078;
}

.txt2:hover {
  color: #079452;
}

.text-center.p-t-136 {
  padding-top: 42px !important;
}

@media (max-width: 992px) {
  .wrap-login100 {
    width: 760px;
  }

  .login100-pic {
    width: 42%;
    padding: 40px;
  }

  .login100-form {
    width: 58%;
    padding: 48px;
  }
}

@media (max-width: 768px) {
  .container-login100 {
    padding: 18px;
  }

  .wrap-login100 {
    width: 100%;
    max-width: 440px;
    min-height: auto;
  }

  .login100-pic {
    display: none;
  }

  .login100-form {
    width: 100%;
    padding: 44px 34px;
  }

  .login100-form-title {
    text-align: center;
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .container-login100 {
    padding: 12px;
  }

  .wrap-login100 {
    border-radius: 14px;
  }

  .login100-form {
    padding: 38px 22px;
  }

  .input100,
  .login100-form-btn {
    height: 46px;
  }

  .symbol-input100 {
    height: 46px;
  }
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: white;
  border: 1px solid #c80000;
  border-radius: 13px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
  pointer-events: none;

  font-family: Poppins-Medium;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 13px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}
/* =========================================================
   PRX LOGIN - FUNDO INSPIRADO NAS CORES DO X DA LOGO
   ========================================================= */

.container-login100 {
    position: relative;
    overflow: hidden;

    /* Azul PRX -> Turquesa -> Verde PRX */
    background:
        linear-gradient(
            115deg,
            #1769e0 0%,
            #087fc4 20%,
            #009fa4 42%,
            #00b978 67%,
            #00d66b 100%
        ) !important;
}

/* X geométrico do lado esquerdo */
.container-login100::before {
    content: "";
    position: absolute;

    width: 520px;
    height: 1400px;

    left: 45px;
    top: 50%;

    transform:
        translateY(-50%)
        rotate(-36deg);

    background: rgba(0, 214, 181, .18);

    pointer-events: none;
}

/* Segunda faixa formando o X */
.container-login100::after {
    content: "";
    position: absolute;

    width: 520px;
    height: 1400px;

    left: 45px;
    top: 50%;

    transform:
        translateY(-50%)
        rotate(36deg);

    background: rgba(0, 75, 190, .20);

    pointer-events: none;
}

/*
 * Mantém o painel acima dos elementos
 * decorativos do fundo.
 */
.wrap-login100 {
    position: relative;
    z-index: 2;
}


/* ---------- MOBILE ---------- */

@media (max-width: 768px) {

    .container-login100::before,
    .container-login100::after {
        width: 300px;
        height: 900px;
        left: -80px;
        opacity: .65;
    }

}
