:root {
  --red: #981831;
  --orange: #E75B10;
  --text: #525252;
  --white: #ffffff;
  --black: #080808;
  --border: #0000004D;
  --grey: #FFFFFF;
}




/* ============================== GLOBAL STYLING ============================== */
p:last-child {
  margin-block-end: 0px !important;
  margin-bottom: 0px !important;
}
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background-color: #F9F9F9;
}
::-webkit-scrollbar-thumb {
  background-color: var(--red);
  border-radius: 5px;
}
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--red);
}