*, *::before, *::after {
  box-sizing: border-box;
}

h3 {
  font-size: 1.53125rem;
  font-weight: 500;
}

body {
  font-family: "Inter", "Roboto", "Open Sans", "TT Norms Pro", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

.tx-14 {
  font-size: 14px;
}

.tx-15 {
  font-size: 15px;
}

.tx-16 {
  font-size: 16px;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.p-0 {
  padding: 0;
}

.m-0 {
  margin: 0;
}

.mb-3{
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.pg-t-0 {
  padding-top: 0px;
}

.mg-t-0 {
  margin-top: 0px;
}

.mg-b-5 {
  margin-bottom: 5px;
}

.mg-b-40 {
  margin-bottom: 40px;
}

.ml-2 {
  margin-left: 10px
}

.mr-2 {
  margin-right: 10px
}

.tx-color-01 {
  color: #001737;
}

.tx-color-03 {
  color: #8392a5;
}

#type-slogan {
  font-size: 4rem;
  line-height: 1;
  color: #f3f3f3;
}

.fs-3 {
  font-size: 3rem;
}

.fs-4 {
  font-size: 4rem;
}


@media (max-width: 1024px) {
  .fs-3 {
    font-size: 2rem;
  }
  
  #type-slogan,
  .fs-4 {
    font-size: 3rem;
  }
}

@media (max-width: 1200px) {
  .fs-3 {
    font-size: 2.5rem;
  }
  
  #type-slogan,
  .fs-4 {
    font-size: 3.5rem;
  }
}

@media (max-width: 1600px) {
  .fs-3 {
    font-size: 2.8rem;
  }
  
  #type-slogan,
  .fs-4 {
    font-size: 3.5rem;
  }
}

.bg-color-purple {
  background-color: #8200ff;
}

.content-auth {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center; 
}

.content-auth > .container {
  padding: 0; 
}

@media (max-width: 1139px) {
  .content-auth > .container {
    max-width: none;
    padding: 0 20px; 
  } 
}

.content-auth > .container:first-child {
  flex: 1; 
}

.content-auth-alt {
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center; 
}

.content-auth-alt .container {
  padding: 0; 
}

@media (max-width: 1139px) {
  .content-auth-alt .container {
    max-width: none; 
  } 
}

.sign-wrapper {
  background-color: #FFF;
  height: auto;
  position: absolute;
  left: 0;
  top:0;
  bottom:0;
  padding: 40px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 400px; 
  border-radius: 2px;
  box-shadow: 0 0 10px rgb(0 0 0 / 50%);
  z-index: 99;
}

/* @media (min-width: 1200px) {
  .sign-wrapper {
    width: 450px; 
  } 
} */


@media (max-width: 600px) {
  .sign-wrapper {
    width: 100%; 
    height: 100%;
    top: 0%;
    left: 0%;
    padding-left: 3rem !important;
    padding-right: 3rem !important;
    border-radius: 0px;
  } 
  .sign-bg {
    display: none !important;
  }
}

.sign-wrapper .form-group label {
  display: block;
  margin-bottom: 5px; 
  font-size: 14px;
}

.sign-body {
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  background-color: #001737;
}

.sign-bg {
  position: absolute;
  left: 395px;
  top:0;
  bottom:0;
  right: 0;
  display: flex;
  padding: 0 7%;
  align-items: center !important;
  justify-content: start !important;
  
  background-image: url('/assets/img/background.webp');
  
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.576562) 6.47%, rgba(0, 0, 0, 0) 20%), url('/assets/img/background.webp');

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#callback_formAuth {
  width: 100%;
  margin-top: 20px;
}

#callback_formAuth > .alert {
  padding: 1px 5px;
  text-align: center;
  border-radius: 3px;
  background-color: #b3acc9;
  color: #1b2e4b;
}

#callback_formAuth > .alert.alert-danger {
  background-color: #f37676;
  color: #FFF;
}

.spinner-border {
  display: inline-block;
  width: var(--y-spinner-width);
  height: var(--y-spinner-height);
  vertical-align: var(--y-spinner-vertical-align);
  border-radius: 50%;
  -webkit-animation: var(--y-spinner-animation-speed) linear infinite var(--y-spinner-animation-name);
  animation: var(--y-spinner-animation-speed) linear infinite var(--y-spinner-animation-name);
}

@-webkit-keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border {
  --y-spinner-width: 2rem;
  --y-spinner-height: 2rem;
  --y-spinner-vertical-align: -0.125em;
  --y-spinner-border-width: 0.25em;
  --y-spinner-animation-speed: 0.75s;
  --y-spinner-animation-name: spinner-border;
  border: var(--y-spinner-border-width) solid currentcolor;
  border-right-color: transparent;
}

.spinner-border-sm {
  --y-spinner-width: 1rem;
  --y-spinner-height: 1rem;
  --y-spinner-border-width: 0.2em;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.9375rem + 2px);
  padding: 0.46875rem 0.625rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #596882;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #c0ccda;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  outline: none;
}

.form-control-lg {
  height: calc(1.5em + 1.2rem + 2px);
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.form-control {
  color: #1b2e4b;
  font-size: inherit; 
}

.form-control::placeholder {
  color: #c0ccda; 
}

.form-control:disabled, .form-control[readonly] {
  background-color: #f5f6fa; 
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #001737;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.46875rem 0.9375rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-lg {
  padding: .6rem 1rem;
  font-size: .9rem;
  line-height: 1.5;
  border-radius: 0.3rem; 
}

.btn-outline-primary {
  color: #0168fa;
  border-color: #0168fa; 
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #0168fa;
  border-color: #0168fa; 
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(1, 104, 250, 0.5); 
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #0168fa;
  background-color: transparent; 
}
  
.btn-outline-primary:not(:disabled):not(.disabled):active, 
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #0168fa;
  border-color: #0168fa; 
}
    
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, 
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(1, 104, 250, 0.5); 
}

.custom-control {
  position: relative;
  display: block;
  min-height: inherit;
  padding-left: 1.5rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.15625rem;
  opacity: 0; }
  .custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #0168fa;
    background-color: #0168fa; }
  .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(1, 104, 250, 0.25); }
  .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #7cb2fe; }
  .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    color: #fff;
    background-color: #afd0ff;
    border-color: #afd0ff; }
  .custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
    color: #7987a1; }
    .custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
      background-color: #e3e7ed; }

.btn-success {
  color: #fff;
  background-color: #10b759;
  border-color: #10b759; }
  .btn-success:hover {
    color: #fff;
    background-color: #0d9448;
    border-color: #0c8842; }
  .btn-success:focus, .btn-success.focus {
    color: #fff;
    background-color: #0d9448;
    border-color: #0c8842;
    box-shadow: 0 0 0 0.2rem rgba(52, 194, 114, 0.5); }
  .btn-success.disabled, .btn-success:disabled {
    color: #fff;
    background-color: #10b759;
    border-color: #10b759; }
  .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
  .show > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #0c8842;
    border-color: #0b7c3c; }
    .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
    .show > .btn-success.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(52, 194, 114, 0.5); }


#login {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 43px;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top; }
  .custom-control-label::before {
    position: absolute;
    top: 0.15625rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: #97a3b9 solid 1px; }
  .custom-control-label::after {
    position: absolute;
    top: 0.15625rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: no-repeat 50% / 50% 50%; }

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem; }

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e"); }

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #0168fa;
  background-color: #0168fa; }

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); }

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(1, 104, 250, 0.5); }

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(1, 104, 250, 0.5); }

.custom-radio .custom-control-label::before {
  border-radius: 50%; }

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); }

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(1, 104, 250, 0.5); }