/* public/assets/css/auth-custom.css */

body.cms-index-index {
  background-color: #f7f7f7;
  font-family: "Arial", sans-serif;
}

/* Auth Card Container */
.auth-container {
  max-width: 450px;
  margin: 50px auto;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 0px; /* ই-কমার্স সাইটের থিমের সাথে মিল রেখে শার্প কর্নার */
}

/* Headings */
.auth-title {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: 1px;
}

/* Input Fields Style */
.auth-input-group {
  margin-bottom: 20px;
}

.auth-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #666666;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.auth-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #cccccc;
  background-color: #fff;
  color: #333;
  font-size: 14px;
  transition: all 0.3s ease;
  border-radius: 0px;
}

.auth-input:focus {
  border-color: #ff3366; /* আপনার সাইটের ব্র্যান্ড পিঙ্ক/রেড অ্যাকসেন্ট কালার */
  outline: none;
  box-shadow: 0 0 5px rgba(255, 51, 102, 0.2);
}

/* Checkbox Style */
.auth-checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.auth-checkbox {
  margin-right: 8px;
  accent-color: #ff3366;
}

/* Primary Button */
.auth-btn-primary {
  width: 100%;
  padding: 13px;
  background-color: #333333; /* ডার্ক বাটন থিম */
  color: #ffffff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-btn-primary:hover {
  background-color: #ff3366; /* হোভারে ব্র্যান্ড কালার */
  color: #ffffff;
}

/* Links */
.auth-link {
  font-size: 13px;
  color: #666666;
  text-decoration: none;
  transition: color 0.2s;
}

.auth-link:hover {
  color: #ff3366;
  text-decoration: underline;
}

/* Error Messages */
.auth-error {
  color: #ff0033;
  font-size: 12px;
  margin-top: 5px;
}

/* Status Messages */
.auth-status {
  background-color: #e6f4ea;
  color: #137333;
  padding: 12px;
  font-size: 14px;
  margin-bottom: 20px;
  border-left: 4px solid #137333;
}

/* Dashboard Layout */
.dashboard-wrapper {
  display: flex;
  gap: 30px;
  margin: 40px auto;
}

/* Sidebar Styling */
.dashboard-sidebar {
  flex: 0 0 250px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 20px 0;
}
.user-profile-summary {
  text-align: center;
  padding: 0 15px 20px 15px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 15px;
}
.user-profile-summary h4 {
  margin: 5px 0;
  color: #333;
  font-size: 16px;
}
.dashboard-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dashboard-menu li a {
  display: block;
  padding: 12px 20px;
  color: #555;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}
.dashboard-menu li a:hover,
.dashboard-menu li.active a {
  background: #fdf5f6;
  color: #ff3366;
  border-left-color: #ff3366;
}

/* Content Area Styling */
.dashboard-content {
  flex: 1;
}
.dashboard-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.stat-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 20px;
  text-align: center;
}
.stat-card h3 {
  font-size: 28px;
  margin: 0 0 5px 0;
  color: #ff3366;
}
.stat-card p {
  margin: 0;
  color: #666;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Tables & Forms inside Dashboard */
.custom-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #e5e5e5;
}
.custom-table th,
.custom-table td {
  padding: 12px 15px;
  border: 1px solid #e5e5e5;
  text-align: left;
  font-size: 14px;
}
.custom-table th {
  background: #f9f9f9;
  color: #333;
}
.badge {
  padding: 4px 8px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}
.badge-success {
  background: #28a745;
}
.badge-warning {
  background: #ffc107;
  color: #333;
}

/* Referral Link Box */
.referral-box {
  background: #f9f9f9;
  border: 1px dashed #ff3366;
  padding: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 15px;
}
.referral-input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 13px;
}
