 html, body {
  height: 100%;
  margin: 0;
  font-family: adobe-clean, sans-serif;
}

/* ===== Background ===== */
.login-wrapper {
  min-height: 100vh;
  background: url('background-login.png') no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 20px;
}

/* ===== Logo ===== */
.logo-top-left {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}

.logo-top-left img {
  width: 60px;
}

.logo-text {
  font-size: 16px;
  color: #000;
  line-height: 1.2;
}

.logo-text strong {
  font-weight: 700;
}

/* ===== Cards ===== */
.login-card {
  background: #d8d8d8;
  border-radius: 16px;
  padding: 48px 30px 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
  max-width: 480px;
  margin: auto;
  min-height: 400px;
}

.login-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 22px;
  text-align: center;
}

/* ===== Inputs ===== */
.form-control {
  border-radius: 10px;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  box-shadow: inset 0 0 0 1px #ccc;
}

.form-control::placeholder {
  color: #333;
}

/* ===== Buttons ===== */
.btn-nutresa {
  background: #2f5d3a;
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  padding: 10px 16px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-nutresa:hover {
  background-color: transparent;
  color: #264c30;
  border-color: #264c30;
  border: 2px solid;
  padding: 8px 14px;
}

/* ===== Text ===== */
.login-info {
  font-size: 11px;
  color: #333;
  margin-top: 18px;
  line-height: 1.4;
  text-align: center;
}

.login-links {
  font-size: 11px;
  text-align: center;
  margin-top: 12px;
}

.login-links a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
}

/* ===== Divider ===== */
.divider {
  width: 2px;
  height: 240px;
  background: rgba(0,0,0,.25);
  margin: auto;
}

/* ===== SSO ===== */
.sso-container {
  max-width: 360px;
  margin: auto;
  text-align: center;
}

.sso-info {
  background: #d8d8d882;
  border-radius: 12px;
  padding: 16px;
  font-size: 11px;
  margin-top: 12px;
}

.sso-info1 {
  background: #ffff80;
  border-radius: 12px;
  text-align: center;
  padding: 16px;
  font-size: 12px;
  color: #000000;
  margin-top: 12px;
  
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .divider {
    display: none;
  }

  .login-card,
  .sso-container {
    margin-bottom: 30px;
  }
}