:root {
  --azul-arias: #0000ff;
  --azul-hover: #0000cc;
  --blanco: #ffffff;
}

.login-body {
  background: linear-gradient(135deg, #0000ff 0%, #e2e2e2 100%);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.login-container {
  width: 100%;
  max-width: 1000px;
  padding: 20px;
}

.login-box {
  display: flex;
  background: var(--blanco);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 255, 0.2);
  min-height: 600px;
}

/* Panel de marca (Azul) */
.login-branding {
  flex: 1;
  background: var(--azul-arias);
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.login-branding img {
  
  max-width: 180px;
}

/* Panel del Formulario */
.login-form-side {
  flex: 1.2;
  padding: 50px;
  background: white;
}

.input-wrapper {
  position: relative;
}

.input-wrapper i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

.input-wrapper .form-control {
  padding-left: 45px;
  height: 50px;
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.input-wrapper .form-control:focus {
  border-color: var(--azul-arias);
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 255, 0.1);
}

.btn-login {
  background: var(--azul-arias);
  color: white;
  font-weight: 700;
  height: 50px;
  border-radius: 10px;
  border: none;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background: var(--azul-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 255, 0.3);
}

.forgot-link, .register-text a {
  color: var(--azul-arias);
  text-decoration: none;
  font-weight: 600;
}

.forgot-link:hover {
  text-decoration: underline;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
  .login-box {
    flex-direction: column;
  }
  .login-branding {
    padding: 30px;
  }
}

.btn-volver {
      background-color: var(--azul-arias);
      color: white;
      font-weight: 700;
      height: 50px;
      border-radius: 10px;
      border: none;
      transition: all 0.3s ease;
    }