/* ==========================================
   LOGIN MODULE LAYOUT STYLESHEET (login.css)
   ========================================== */

.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}

.login-card {
  width: 100%;
  max-width: 440px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  animation: fadeInDown 0.5s ease-out forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: #ff8700;
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-logo-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(214, 35, 0, 0.12) 0%, rgba(255, 135, 0, 0.18) 100%);
  border: 2px solid rgba(214, 35, 0, 0.3);
  border-radius: var(--card-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2rem;
  color: #d62300;
  box-shadow: 0 10px 25px rgba(214, 35, 0, 0.15);
}

.btn-login {
  width: 100%;
  margin-top: 0.75rem;
}

.demo-credentials-box {
  background: rgba(255, 135, 0, 0.12);
  border: 1.5px dashed rgba(214, 35, 0, 0.35);
  border-radius: var(--input-radius);
  padding: 0.9rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #502314;
  text-align: center;
  line-height: 1.5;
  font-weight: 600;
}

.demo-credentials-box strong {
  color: #d62300;
}

