/* DashGro Email Login styles */
body { font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; }
.dg-auth-wrap { max-width:420px; margin:30px auto; padding:18px; }
.dg-card { background: #fff; padding:18px; border-radius:10px; box-shadow: 0 8px 30px rgba(8,15,40,0.08); }
.dg-form { display:flex; flex-direction:column; gap:12px; }
.dg-label { font-weight:600; margin-bottom:6px; color:#222; }
.dg-input { padding:10px 12px; border-radius:8px; border:1px solid #e2e8f0; width:100%; box-sizing:border-box; font-size:15px; }
.dg-btn { padding:10px 12px; border-radius:8px; border:0; cursor:pointer; font-weight:600; }
.dg-btn-primary { background:#0a7bff; color:#fff; }
.dg-btn-success { background:#0bbf7a; color:#fff; }
.dg-strength { color:#555; font-size:13px; }
.dg-footer-note { margin-top:12px; font-size:13px; color:#666; text-align:center; }
.dg-message { background:#f6ffed; border:1px solid #d1f7c4; padding:10px; border-radius:6px; display:inline-block; }
.dg-center { display:flex; justify-content:center; align-items:center; min-height:60vh; }
.dg-small { font-size:13px; color:#666; margin-top:8px; }

/* ====== Dashgro Login Form Styles ====== */

.custom-email-form {
  max-width: 400px;
  margin: 50px auto;
  padding: 25px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  font-family: "Segoe UI", Arial, sans-serif;
}

.custom-email-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.custom-email-form input[type="email"],
.custom-email-form input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: 0.2s;
}

.custom-email-form input:focus {
  border-color: #0073e6;
  box-shadow: 0 0 6px rgba(0,115,230,0.3);
  outline: none;
}

.custom-email-form .buttoncss {
  display: block;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #0073e6, #00b0ff);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-email-form .buttoncss:hover {
  background: linear-gradient(135deg, #005bb5, #0088cc);
  transform: translateY(-1px);
}

.custom-email-form .strength-text {
  font-size: 14px;
  margin-top: -10px;
  margin-bottom: 15px;
}

.success-message {
  background: #e6f9e6;
  border: 1px solid #4caf50;
  color: #2e7d32;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  margin-top: 20px;
}
