    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', sans-serif;
    }

    body {
      min-height: 100vh;
      /*background: url('/public/assets/expo-app/img/bg.webp');*/
      background: linear-gradient(to bottom, #0f0120, #3e1b6b, #472b9a, #3a54d0, #32b0f2);
      display: flex;
      flex-direction: column;
      /*justify-content: center;*/
      align-items: center;
      padding: 20px;
      overflow-y: hidden;
    }

    .splash-screen {
      text-align: center;
      margin-bottom: 40px;
    }

    .splash-logo img {
      width: 70px;
      height: auto;
      margin-bottom: 20px;
    }

    .navigation {
      display: grid;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
      position: absolute;
      bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    }

    .nav-button {
        width: 100%;
        padding: 12px 20px;
        border: none;
        border-radius: 25px;
        min-width: 250px;
        background-color: white;
        /*color: #6a11cb;*/
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: center;
    }

    .login-card {
      position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 35vh;     /* enough height even if content is short */
  max-height: 80vh;     /* prevents covering full screen */
  overflow-y: auto;     /* enables internal scroll when needed */
  background: white;
  padding: 30px 25px;
  border-radius: 25px 25px 0 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  margin: 0 auto;
    }
    .login-card {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* for iOS */
}
.login-card {
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}

.login-card::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}


    
    .login-card.show {
      display: block;
    }

    h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #4B0082;
    }

    label {
      display: block;
      margin-bottom: 5px;
      font-weight: 500;
      color: #333;
      font-size:14px;
    }

    .input-icon {
      position: relative;
      margin-bottom: 20px;
    }

    .input-icon input {
      width: 100%;
      padding: 12px 40px 12px 15px;
      /*border-radius: 12px; */
      border-bottom: 1px solid #ccc !important;
      border: none;
      font-size: 16px;
    }

    .input-icon img {
        position: absolute;
        right: 12px;
        top: 43px;
        width: 20px;
        opacity: 0.4;
    }

    button[type="submit"] {
      width: 100%;
      padding: 12px;
      border: none;
      border-radius: 25px;
      /*background: linear-gradient(135deg, #f95e09 60%, #fec145 100%);*/
      background: radial-gradient(circle at center, #1e1e4d 0%, #141432 80%, #0b0b1e 100%);
      color: white;
      font-size: 16px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    button[type="submit"]:hover {
      opacity: 0.9;
      background: radial-gradient(circle at center, #3a3a7d 0%, #2c2c5e 80%, #1b1b3d 100%);
    }

    .link {
      text-align: center;
      margin-top: 15px;
      font-size: 14px;
    }

    .link a {
      color: #6a11cb;
      text-decoration: none;
      font-weight: 500;
    }

    .error-msg {
      color: red;
      font-size: 14px;
      text-align: center;
      margin-top: 10px;
    }

    @media (max-width: 480px) {
      .splash-logo img {
        width: 60px;
      }
    }
    .upload-box {
      border: 2px dashed #ccc;
      border-radius: 10px;
      padding: 30px;
      cursor: pointer;
      transition: border 0.3s ease;
      position: relative;
    }
    .upload-box.dragover {
      border-color: #0d6efd;
      background-color: #f0f8ff;
    }
    .upload-placeholder {
      display: block;
    }
    .upload-box.hide-placeholder .upload-placeholder {
      display: none;
    }
    .upload-box i {
      font-size: 40px;
      color: #ef6c3c;
    }
    .upload-box p {
      margin: 10px 0 0;
      color: #888;
    }
    #card_image {
      display: none;
    }
    .preview-img {
      width: 100%;
      border-radius: 10px;
      margin-top: 15px;
    }
    .close-preview {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #ff4d4d;
      color: white;
      border: none;
      border-radius: 50%;
      width: 25px;
      height: 25px;
      font-size: 16px;
      line-height: 25px;
      text-align: center;
      cursor: pointer;
      display: none;
    }
    .btn-primary {
      width: 100%;
      margin-top: 20px;
      border: none;
      background-color: #ef6c3c;
    }
    .btn-primary:hover {
      background-color: #c45b34;
    }
    .or-separator {
      font-size: 14px;
      color: #999;
      margin-top: 10px;
    }
    .logo {
      width: 60px;
      margin-bottom: 15px;
    }
    .copyright {
      font-size: 12px;
      color: #aaa;
      margin-top: 20px;
      text-align: center;
    }
    .note {
      font-size: 13px;
      color: #999;
      margin-top: 10px;
    }