/* ===============================
   AUTH PAGES (LOGIN / REGISTER / RESET)
================================ */
.cricma-social-login {
  width: 100%;
  text-align: center;
  max-width: 380px;
  background-color: #fff;
  padding: 20px 0;
}

.nsl-container.nsl-container-block {
  width: fit-content;
  margin: 0 auto;
}

.or-divider {
  margin: 12px 0;
  font-weight: 600;
  opacity: 0.6;
}

.cricma-auth-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f6f8fb;
  padding: 3rem 1rem;
}

.cricma-auth-box {
  width: 100%;
  max-width: 380px;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.cricma-auth-box h2 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.cricma-auth-box input {
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.cricma-auth-box input[type="checkbox"] {
  width: auto;
  margin-bottom: 0.1rem;
}

.cricma-auth-box button {
  width: 100%;
  padding: 0.65rem;
  background: #1d4ed8;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.cricma-auth-box button:hover {
  background: #0f172a;
}

.remember {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
}

.cricma-links {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.cricma-links a {
  color: #1d4ed8;
  text-decoration: none;
}

.cricma-links a:hover {
  text-decoration: underline;
}

.cricma-error {
  color: #dc2626;
  margin-bottom: 0.75rem;
}

.cricma-info {
  color: #16a34a;
  margin-bottom: 0.75rem;
}

.cricma-auth-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 15px;
}

.cricma-btn {
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.cricma-btn.dashboard {
  background: #2271b1;
  color: #fff;
}

.cricma-btn.logout {
  background: #b32d2e;
  color: #fff;
  border: none;
}

.h2or {
  margin-bottom: 0 !important;
}

ul{
    list-style: none;
    padding-left: 10px;
  }
  .btn {
    margin-top: 10px;
    padding: 10px 20px;
    background: #1d4ed8;
    color: white;
    border-radius: 8px;
  }

  .cricma-dashboard-wrapper {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1rem;
  }

  .cricma-dashboard-header {
    margin-bottom: 2rem;
  }

  .cricma-dashboard-subtitle {
    opacity: 0.7;
  }

  .cricma-dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .cricma-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
  }

  .cricma-card-article ul li:first-child {
    display: none;
  }

  .cricma-actions li {
    margin-bottom: 8px;
  }