.icon-font {
  width: 340px;
}

.title-font {
  font-family: var(--font-title);
}

.login-container {
  display: flex;
  min-height: 100vh;
}

.left-panel {
  background: linear-gradient(to right, #55d4e3, #0046ab);
  color: white;
  padding: 9rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
}

.right-panel {
  padding: 2rem;
  background-color: #f6f8fd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
}

.login-form {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.btn-blue {
  background-color: #0096ff;
  color: white;
  border: none;
}

.btn-blue:hover {
  background-color: #007acc;
}

.form-control {
  border-color: #b3b3b3;
}

.form-control:focus {
  border-color: #0096ff;
  box-shadow: none;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 72%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #6c757d;
}

.btn-outline-custom {
  text-align: left;
  padding: 1rem;
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  transition: all 0.2s;
  background-color: #fff;
  cursor: pointer;
}

.btn-outline-custom:hover {
  background-color: #f8f9fa;
}

.btn-check:checked + .btn-outline-custom {
  background-color: #90c2f5;
  border-color: var(--blue);
  color: #005795;
}

/* Estilos para móvil */
@media (max-width: 991.98px) {

  .icon-font {
    width: 260px;
  }
  
  .left-panel {
    width: 100%;
    padding: 1.5rem;
    text-align: center;
    align-items: center;
  }
  
  .right-panel {
    width: 100%;
    padding: 2rem 1.5rem;
  }
  
  .login-form {
    max-width: 100%;
  }
}

/* Centrado vertical en desktop */
@media (min-width: 992px) {
  .login-container {
    align-items: center;
    justify-content: center;
  }
  
  .left-panel, 
  .right-panel {
    height: 100vh;
    display: flex;
    align-items: center;
  }
}