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

body, html {
	height: 100%;
	font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/*---------------------------------------------*/
a {
	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: rgba(0, 87, 150, 1);
}



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

.bg-page {
  background-image: linear-gradient(to right, rgba(100, 100, 100, 0.15), rgba(100, 100, 100, 0.15)), url('/images/login/bg_login.webp');
  background-size: cover;
  background-position: center, right;
}


.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.wrap-login {
  width: 960px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

/*------------------------------------------------------------------
[  ]*/
.login-pic {
  width: 50%;
}

.login-pic > img {
  max-width: 100%;
}


/*------------------------------------------------------------------
[  ]*/
.login-form {
  width: 50%;
}

.login-form-title {
  font-size: 1.65em;
  font-weight: bold;
  color: #333333;
  line-height: 1.2;

  width: 100%;
  display: block;
  padding-bottom: 54px;
  padding-top: 54px;
}


/*------------------------------------------------------------------
[ Button ]*/
.container-login-form-btn {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
}

.login-form-btn {
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;

  width: 100%;
  height: 50px;
  border: none;
  border-radius: 0.25rem;
  background: rgba(239, 164, 98, 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;

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

.login-form-btn:hover {
  background: rgba(239, 164, 98, 0.9);
  color: #fff;
}

.login-form-link {
  color: #F0AD62;
}

.login-form-link:hover {
  color: rgba(239, 164, 98, 0.8);
}

/*------------------------------------------------------------------
[ Responsive ]*/



@media (max-width: 992px) {

  .login-pic {
    width: 35%;
  }

  .login-form {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .login-pic {
    display: none;
  }

  .login-form {
    width: 100%;
  }
}

@media (max-width: 576px) {

}

.lockscreen-name {
  text-align: center;
	font-weight: 600;
}

.left-frame {
  width: 50%;
  background: linear-gradient(90deg, #EFA862 7%, #EE8364 100%);
  border-top-left-radius: 0.5em;
  border-bottom-left-radius: 0.5em;
  padding: 20% 0;
}


.logo-text-1 {
  font-size: 4em;
	color: white;
  font-weight: bold;
  margin-bottom: 0;
}

.logo-text-2 {
  font-size: 2em;
	color: white;
  margin-top: 0;
}

/* Ajustes de alinhamento dos inputs */
.login-form .input-group {
  width: 80%;
  margin: 0 auto;
}

.login-form .input-group .form-control {
  border-right: none;
  height: 50px;
  font-size: 15px;
}

.login-form .input-group .input-group-text {
  background-color: #fff;
  border-left: none;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-form .input-group .input-group-text i {
  font-size: 20px;
  color: #666;
  width: 20px;
  text-align: center;
}

/* Ajuste do título */
.login-form-title {
  width: 80%;
  margin: 0 auto;
  display: block;
}

/* Estado de loading do botão */
.login-form-btn {
  position: relative;
}

.login-form-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.login-form-btn .btn-text {
  transition: opacity 0.2s;
}

.login-form-btn.loading .btn-text {
  opacity: 0;
}

.login-form-btn .spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.login-form-btn.loading .spinner {
  display: block;
}

.spinner-border-sm {
  width: 1.2rem;
  height: 1.2rem;
  border-width: 0.15em;
}

/* Ajuste do CapsLock warning */
.js-capslock-msg {
  display: block;
  width: 80%;
  margin: 5px auto 0;
  font-size: 12px;
  color: #dc3545;
}

/* Ajuste das mensagens de erro */
.login-form .mb-3 {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.login-form .mb-3 .input-group {
  width: 100%;
}

/* Garantir que o botão tenha exatamente o mesmo width que os input-groups */
.login-form .container-login-form-btn {
  width: 80%;
  padding-left: 0;
  padding-right: 0;
}

/* Remover padding do col para alinhar corretamente */
.login-form > .col {
  padding-left: 0;
  padding-right: 0;
}

/* Remover borda verde de validação do Bootstrap nos campos válidos */
.login-form .was-validated .form-control:valid,
.login-form .form-control.is-valid {
  border-color: #ced4da;
  background-image: none;
}

.login-form .was-validated .form-control:valid:focus,
.login-form .form-control.is-valid:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Remover ícone de check verde */
.login-form .was-validated .form-control:valid ~ .input-group-append .input-group-text,
.login-form .form-control.is-valid ~ .input-group-append .input-group-text {
  border-color: #ced4da;
}