/* Base */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  font-size: 22px;
  background: #f5f6f8;
}

/* Main container */
.container {
  width: 92%;
  max-width: none;
  margin: 10px auto;
}

/* Buttons */
.btn, button {
  display: block;
  width: 100%;
  padding: 18px;
  font-size: 22px;
  margin: 12px 0;
  border-radius: 12px;
  text-align: center;
  border: none;
  color: #fff;
}

/* Button colors */
.btn-black { background: #000; }
.btn-green { background: #25D366; }
.btn-blue { background: #007bff; }

/* Inputs */
input, select, textarea {
  width: 100%;
  padding: 16px;
  font-size: 22px;
  margin: 12px 0;
  border-radius: 12px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Cards (lead list) */
.card {
  background: #fff;
  padding: 16px;
  margin: 14px 0;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

/* Status colors */
.card.green { border-left: 8px solid #2ecc71; }
.card.yellow { border-left: 8px solid #f1c40f; }
.card.red { border-left: 8px solid #e74c3c; }

/* Title */
.title {
  font-size: 24px;
  font-weight: bold;
}

/* Small text */
.small {
  font-size: 16px;
  color: #555;
}

/* Action buttons row */
.actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.actions a {
  flex: 1;
}

/* Short note */
.short-note {
  margin-top: 10px;
  font-size: 18px;
  padding: 10px;
}

/* ---------------- LOGIN PAGE ---------------- */

/* Wrapper */
.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Card */
.login-card {
  width: 100%;
  max-width: 380px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Title */
.login-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 26px;
}

/* Ensure full width inside login */
.login-card input,
.login-card button {
  width: 100%;
}