/* =====================================================
   Live Long – Web Login Page (Simple Login)
   Brand Color: #0066ff
   ===================================================== */

/* ---------- Page Base ---------- */
body.simplelogin {
    background: #f1f5f9;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  }
  
  .live-long-login {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* ---------- MAIN CARD ---------- */
  .live-long-login {
    /* padding: 40px; */
  }
  
  .live-long-login > aside,
  .live-long-login > main {
    height: 100%;
  }
  
  .live-long-login {
    max-width: 1200px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    overflow: hidden;
  }
  
  /* ---------- LEFT BRAND PANEL ---------- */
  .login-brand {
    flex: 1;
    padding: 64px;
    background: linear-gradient(135deg, #0066ff, #3385ff);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .login-logo img {
    width: 160px;
  }
  
  .login-tagline {
    font-size: 36px;
    font-weight: 700;
    margin-top: 40px;
    line-height: 1.25;
  }
  
  .login-description {
    font-size: 16px;
    opacity: 0.95;
    max-width: 420px;
    margin-top: 12px;
  }
  
  /* Illustration */
  .login-illustration {
    margin-top: 40px;
  }
  
  .login-illustration img {
    max-width: 100%;
    height: auto;
  }
  
  /* ---------- RIGHT LOGIN PANEL ---------- */
  .login-card {
    flex: 1;
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* ---------- HEADER ---------- */
  .login-header {
    margin-bottom: 32px;
  }
  
  .login-title {
    font-size: 28px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
  }
  
  .simplelogin-link a {
    font-size: 14px;
    color: #0066ff;
    text-decoration: none;
    font-weight: 500;
  }
  
  .simplelogin-link a:hover {
    text-decoration: underline;
  }
  
  /* ---------- FORM ---------- */
  .login-form-wrapper form {
    margin-top: 24px;
  }
  
  .login-form-wrapper .form-item {
    margin-bottom: 18px;
  }
  
  .login-form-wrapper label {
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    margin-bottom: 6px;
    display: block;
  }
  
  .login-form-wrapper input[type="text"],
  .login-form-wrapper input[type="email"],
  .login-form-wrapper input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 15px;
    transition: all 0.2s ease;
  }
  
  .login-form-wrapper input::placeholder {
    color: #94a3b8;
  }
  
  .login-form-wrapper input:focus {
    outline: none;
    border-color: #0066ff;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
  }
  
  /* ---------- BUTTON ---------- */
  .login-form-wrapper input[type="submit"] {
    width: 100%;
    margin-top: 12px;
    padding: 14px;
    background: linear-gradient(135deg, #0066ff, #0052cc);
    color: #ffffff;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .login-form-wrapper input[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 102, 255, 0.35);
  }
  
  /* ---------- FOOTER ---------- */
  .login-footer {
    margin-top: 18px;
  }
  
  .forgot-password a {
    font-size: 14px;
    color: #0066ff;
    text-decoration: none;
  }
  
  .forgot-password a:hover {
    text-decoration: underline;
  }
  
  .login-info {
    margin-top: 18px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
  }
  
  /* ---------- SYSTEM MESSAGES ---------- */
  .messages {
    margin-bottom: 16px;
    font-size: 14px;
  }
  
  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 992px) {
    .live-long-login {
      flex-direction: column;
      max-width: 100%;
      border-radius: 0;
    }
  
    .login-brand {
      display: none;
    }
  
    .login-card {
      padding: 48px 32px;
    }
  }
  
  @media (max-width: 480px) {
    .login-card {
      padding: 36px 20px;
    }
  
    .login-title {
      font-size: 24px;
    }
  }
  