/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* COLORS */
:root {
  --primary: #6C63FF;
  /* --primary: #FF6B6B; */
  --secondary: #FF6B6B;
  --bg-light: #F5F7FB;
  --white: #ffffff;
  --text-dark: #2d2d2d;
  --border-color: #e5e7eb;
 
}

/* BODY */
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
}

/* HEADINGS */
h1 {
  font-size: 32px;
  font-weight: 600;
}

/* BUTTON */
.logout-btn {
  background: var(--primary);
  color: white;
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
}

/* ================= PLACEHOLDER COLOR FIX ================= */

/* INPUT PLACEHOLDER */
input::placeholder {
  color: #9ca3af !important;
  opacity: 1;
}

/* TEXTAREA */
textarea::placeholder {
  color: #9ca3af !important;
}

/* SELECT2 PLACEHOLDER */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #9ca3af !important;
}

/* SELECT2 TEXT WHEN NOT SELECTED */
.select2-container--default .select2-selection--single {
  color: #9ca3af !important;
}

/* WHEN VALUE SELECTED → NORMAL COLOR */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #2d2d2d !important;
}

/* NORMAL SELECT (GENDER) */
select.form-control {
  color: #2d2d2d;
}

/* WHEN DEFAULT OPTION */
select.form-control:invalid {
  color: #9ca3af;
}