/*Classic Theme*/
html {
  font-family: 'Open Sans', sans-serif;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #fff;
}

/* Imagem de fundo */
.background-image {
  background-image: url('/imagens/banner-merchante-signup.webp');
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: absolute;
  width: 100%;
  z-index: -1;
}


/* Imagem de logo */

.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 10px; /* Espaço entre a logo e o título */
}

.logo-parceiros {
  height: 140px;
  max-width: 100%; /* Garante que não ultrapasse a largura do container */
}


/* Container do formulário */
.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.form-container {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 7px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 500px; /* Aumentar a largura máxima do card */
  margin: 0 auto;
}

.form-container .form-label-group {
  margin-bottom: 15px;
}

.form-container .form-control {
  width: 100%; /* Garantir que os campos do formulário ocupem toda a largura */
}



/* Responsividade */
@media (max-width: 767px) {
  .form-container {
      margin-bottom: 0; /* Minimiza a margem inferior */
  }
}

/* Outros estilos existentes */
a:hover {
  text-decoration: none;
}

p {
  font-size: 14px;
}

p.dim {
  color: #a3a3a3;
}

label.dim,
a.dim {
  color: #404445;
  font-size: 12px;
}

a.underline {
  text-decoration: underline;
}

h6, h5 {
  font-weight: 600;
}

h6 {
  text-align: center;
}

.badge {
  font-weight: 500;
}

.login-wrapper {
  margin: 0;
  padding: 0;
}

.login-wrapper .right-container {
  min-height: 100vh;
  text-align: center;
}

.img-60 {
  max-width: 60px;
  height: 60px;
}

.logok-wrapper,
.app-store-wrap {
  margin: 20px;
}

.right-container-wrap {
  display: block;
  margin-left: 7em;
  margin-right: 7em;
  margin-top: 70px;
  background-color: #f7f7f7;
  border-radius: 7px;
}

.app-store-wrap img {
  max-width: 8em;
}

.main-container {
  min-height: 65vh;
  width: 80%;
  margin: auto;
}

.main-container-wrap {
  padding: 50px 20px;
  text-align: left;
}

.font11 {
  font-size: 11px !important;
}

/* FORMS */
form .errorMessage {
  text-align: initial;
  font-size: 12px;
  color: #dc3545;
  padding: 5px 0px 0px 0px;
}

.btn-green {
  background: #2773a3;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: .45rem;
  padding: 12px;
}

.btn-green:focus,
.btn-green:hover {
  color: #fff !important;
}

.btn-full {
  width: 100%;
}

.btn-green.normal {
  padding: .375rem .75rem;
}

.form-control-text {
  font-size: 15px;
  font-weight: 500;
  border-radius: .45rem;
  padding-left: 7px !important;
  background: #f6f7f9;
  border: none;
  min-height: 55px;
}

.form-label-group > label {
  font-size: 15px;
  font-weight: 500;
}

/* CHECKBOX */
.custom-checkbox {
  margin-left: 10px;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #1a325c!important;
}

.custom-checkbox .custom-control-input:checked:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(2, 71, 150, 0.25);
}

.custom-checkbox .custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}

.custom-checkbox .custom-control-input:active ~ .custom-control-label::before {
  background-color: #C8FFC8; 
}

label span.required {
  display: none;
}

.change_field_password {
  position: relative;
}

.change_field_password .change_field_href {
  position: absolute;
  right: 15px;
  bottom: 10px;
  display: block;
  padding: 5px;
  color: #000;
}

/*** RESPONSIVE ***/
@media (min-width: 1200px) {}

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
  .login-wrapper .right-container-wrap {    
      width: 100%;
      margin: auto;
  }

  .login-wrapper .main-container {    
      width: 100%;
      min-height: auto;
  }

  .main-container-wrap {
      padding: 20px;
  }  

  .form-label-group > label,
  .btn-green,
  .form-control-text {
      font-size: 12px;
  }

  .form-control-text {
      min-height: 45px;    
  }
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
  .logok-wrapper {
      display: none;
  }

  .login-wrapper .left-container {
      min-height: 35vh;
  }  

  .main-container-wrap {
      padding: 20px;
  }  

  .form-label-group > label,
  .btn-green,
  .form-control-text {
      font-size: 12px;
  }

  .form-control-text {
      min-height: 45px;    
  }
}

/* Portrait phones and smaller */
@media (max-width: 480px) { 
  .login-wrapper .left-container {
      min-height: 7vh;
  }

  .login-wrapper .right-container-wrap {    
      width: 100%;
      margin: auto;
  }

  .login-wrapper .main-container {    
      width: 100%;
      min-height: auto;
  } 

  .form-label-group > label,
  .btn-green,
  .form-control-text {
      font-size: 12px;
  }

  .form-control-text {
      min-height: 45px;    
  }

  .app-store-wrap img {
      max-width: 100%;
  }
}

/*** END RESPONSIVE ***/
