body {
    margin: 0;
    background-color: #373a36;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
}

.logo_empresa {
    text-align: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.logo-wisetrack{
    width: calc(100% - 50px);
}

.datos {
   width: 100%; 
   margin-top:20px;
   z-index:1;
}

.btn-login {
    margin: 0 auto;
    background: #008c95;
    font-family: 'Gotham XLight';
    height: 40px;    
    font-size: 18px;
    text-align: center;
    color: white;
    border-radius: 50px;    
    border: none;
    transition: all 0.25s ease;
}


.btn-login:hover, .btn-login:focus {
    background: #00747c !important;
    box-shadow: 0 6px 15px rgba(0, 140, 149, 0.3);
    transform: translateY(-2px);
}

.btn-login:active {
    background: #00747c !important;
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 140, 149, 0.25);
}

.contenedor-login {
    text-align:center;
}

/* Efecto al hacer focus */
.dato:focus {
    border: 1px solid #169eb3; 
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    background-color: #fafcff;
}

.dato::placeholder {
    color: #169eb3;
    opacity: 1; /* importante para que no se vea gris en algunos navegadores */
}

.dato::-webkit-input-placeholder {
    color: #169eb3;
}

.dato:-ms-input-placeholder {
    color: #169eb3;
}

.text-asistencia {
    color: #CFCFCF;
    font-size:14px;
    margin-top:30px;
}

.qr-app {
    margin-top:30px !important;
    width: 150px;
    margin: 0 auto;
    display: block;
}

.logo-qr {
    width:100%;
}

.recuperar_contrasena {
    float: left;
    display: block;
    height: 18px;
    /*width: 142px;*/

    color: #999999;
    font-family: 'Gotham';
    font-weight: bold;
    font-size: 12px;
    text-align: left;
    margin-top: 25px;
    margin-left: 50px;
    cursor: pointer;
}

.recuperar_contrasena:hover{
    color: #888888;
}

::-moz-placeholder {
  opacity: 0.8;
  color:rgba(0,0,0,0.75);
  font-size:16px;
  font-family:'Gotham XLight';
  font-weight:bold;
}

/*Login Test Example*/

.carousel-item {
  height: 100vh;
  min-height: 350px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.carousel{
    width: 100% !important;
}

.carousel-inner {
    width: 102.4% !important;
}

:root {
  --input-padding-x: 1.5rem;
  --input-padding-y: 0.75rem;
}

.login,
.image {
  min-height: 100vh;
}

.bg-image {
  width:  100%; 
  height: 100%; 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.login-heading {
  font-weight: 300;
}

.form-label-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-label-group>input,
.form-label-group>label {
  padding: var(--input-padding-y) var(--input-padding-x);
  height: auto;
  border-radius: 2rem;
}

.form-label-group>label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  margin-bottom: 0;
  /* Override default `<label>` margin */
  line-height: 1.5;
  color: #495057;
  cursor: text;
  /* Match the input under the label */
  border: 1px solid transparent;
  border-radius: .25rem;
  transition: all .1s ease-in-out;
}

.form-label-group input::-webkit-input-placeholder {
  color: transparent;
}

.form-label-group input:-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-moz-placeholder {
  color: transparent;
}

.form-label-group input::placeholder {
  color: transparent;
}

.form-label-group input:not(:placeholder-shown) {
  padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
  padding-bottom: calc(var(--input-padding-y) / 3);
}

.form-label-group input:not(:placeholder-shown)~label {
  padding-top: calc(var(--input-padding-y) / 3);
  padding-bottom: calc(var(--input-padding-y) / 3);
  font-size: 12px;
  color: #777;
}

/* Fallback for Edge
-------------------------------------------------- */

@supports (-ms-ime-align: auto) {
  .form-label-group>label {
    display: none;
  }
  .form-label-group input::-ms-input-placeholder {
    color: #777;
  }
}


/* Fallback for IE
-------------------------------------------------- */

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .form-label-group > label {
        display: none;
    }
}

.pl-15{
    padding-left:15px;
}

.pr-15{
    padding-right:15px;
}

.btn-open {
    margin: 50px;
    padding: 10px 20px;
}

/* OVERLAY OSCURO */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 998;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* SHEET */
.support-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f3f1f1;
    border-radius: 30px 30px 0 0;
    padding: 20px;
    box-sizing: border-box;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
    z-index: 999;
    font-family: 'Gotham XLight';
    font-size: 17px;
}

.support-sheet.active {
    transform: translateY(0);
}

/* HANDLE */
.sheet-handle {
    width: 50px;
    height: 5px;
    background: #bbb;
    border-radius: 10px;
    margin: 0 auto 20px auto;
}

/* HEADER */
.sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sheet-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sheet-title h2 {
    margin: 0;
}

.btn-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* TEXTO */
.sheet-text {
    margin: 20px 0;
    color: #555;
    font-weight:600;
}

/* CARDS */
.card {
    background: #0f6b6b;
    color: white;
    padding: 18px;
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
    transition: 0.2s ease;
    flex-direction: row !important;
}

.card:hover {
    transform: scale(1.02);
}

.card-left {
    display: flex;
    gap: 15px;
    align-items: center;
}

.card-left strong {
    display: block;
}

.card-left span {
    font-size: 14px;
    opacity: 0.8;
}

.arrow {
    font-size: 24px;
    display: flex;
}

.input-container {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}

/* Estilo base de los iconos */
.dato:-webkit-autofill {
    -webkit-text-fill-color: #000000 !important;
    transition: background-color 9999s ease-in-out 0s;
    box-shadow: 0 0 0px 1000px white inset !important;
}


/* Ajuste de los iconos para que no se muevan */
.icon{
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
}

.ico-user { 
    background-image: url('../images/login/ico1.png');

}

.ico-pass { 
    background-image: url('../images/login/ico2.png'); 
}

.ico-comp { 
    background-image: url('../images/login/ico3.png'); 
}

.dato:-webkit-autofill {
    -webkit-text-fill-color: #000000 !important;
    transition: background-color 9999s ease-in-out 0s;    
}

.dato{
    width: 100%;
    height: 40px;
    padding-left: 45px; 
    border: 1px solid #CCCCCC;
    font-family: "Gotham XLight";
    font-size: 18px;
    color: #000;
    background-color: #ffffff;
    outline: none;
}