@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;900&display=swap');



/* =======================================
   ROOT VARIABLES
======================================= */
:root {
  --bg-0: #071424;
  --bg-1: #0f2a36;
  --card: rgba(255,255,255,0.03);
  --accent: #2bb6ff;
  --glass: rgba(255,255,255,0.03);
}

/* =======================================
   RESET
======================================= */
body,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, dd, ol, ul,
figure,
hr,
fieldset, legend {
  margin: 0;
  padding: 0;
}

li > ol, li > ul { margin-bottom: 0; }

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset {
  min-width: 0;
  border: 0;
}

button {
  outline: none;
  background: none;
  border: none;
}

/* =======================================
   BASE
======================================= */
html, body {
  height: 100%;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: linear-gradient(180deg, var(--bg-0), var(--bg-1));
  color: #e6eef6;
  font-size: 12px;
}

h1 { font-size: 30px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 15px; }
h5 { font-size: 13px; }
h6 { font-size: 10px; }

.page-wrapper {
  min-height: 100vh;
}

/* =======================================
   SPACING
======================================= */
.p-t-100 { padding-top: 100px; }
.p-t-130 { padding-top: 130px; }
.p-t-90  { padding-top: 90px; }
.p-t-20  { padding-top: 20px; }
.p-t-15  { padding-top: 15px; }
.p-t-10  { padding-top: 10px; }
.p-t-30  { padding-top: 30px; }

.p-b-100 { padding-bottom: 100px; }

.m-r-45 { margin-right: 45px; }

/* =======================================
   WRAPPER
======================================= */
.center-wrap {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.wrapper { margin: 1px; }
.wrapper--w1920 { max-width: 1920px; }
.wrapper--w780  { max-width: 780px; }
.wrapper--w680  { max-width: 680px; }

/* =======================================
   FORM ELEMENTS
======================================= */
input {
  width: 100%;
  outline: none;
  border: none;
  margin: 0;
  font-size: 12px;
  font-family: inherit;
  background: none;
  box-shadow: none;
}

.input--style-4 {
  line-height: 50px;
  background: #fafafa;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.08);
  border-radius: 5px;
  padding: 0 20px;
  font-size: 12px;
  color: #666;
  transition: all 0.3s ease;
}

.input--style-4::placeholder {
  color: #666;
}

.label {
  font-size: 12px;
  color: #555;
  margin-bottom: 5px;
  display: block;
  text-transform: capitalize;
}

.input-group {
  position: relative;
  margin-bottom: 22px;
  display: flex;
}

.input-group-icon {
  position: relative;
  display: flex;
}

.input-icon {
  position: absolute;
  font-size: 16px;
  color: #999;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

/* =======================================
   RADIO
======================================= */
.radio-container {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 16px;
  color: #666;
  user-select: none;
}

.radio-container input {
  position: absolute;
  opacity: 0;
}

.radio-container .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  background: #e5e5e5;
  border-radius: 50%;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.08);
}

.radio-container .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #57b846;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.radio-container input:checked ~ .checkmark {
  background: #e0e0e0;
}

.radio-container input:checked ~ .checkmark::after {
  display: block;
}

/* =======================================
   SELECT2
======================================= */
.rs-select2 .select2-container {
  width: 100% !important;
  background: #fafafa;
  border-radius: 5px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.08);
}

.rs-select2 .select2-selection--single {
  height: 50px;
  background: transparent;
}

.rs-select2 .select2-selection__rendered {
  line-height: 50px;
  padding: 0 50px 0 22px;
  font-size: 16px;
  color: #555;
}

.rs-select2 .select2-selection__arrow {
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs-select2 .select2-selection__arrow::after {
  content: "\f2f9";
  font-family: "Material-Design-Iconic-Font";
  font-size: 20px;
  color: #999;
  transition: 0.3s;
}

.select2-container--open .select2-selection__arrow::after {
  transform: rotate(-180deg);
}

.select2-dropdown--below {
  margin-top: 5px;
  border-radius: 3px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* =======================================
   CARD
======================================= */
.card {
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.login-card {
  width: 100%;
  padding: 1.75rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.04);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  box-shadow: 0 6px 30px rgba(2,6,23,0.6);
  backdrop-filter: blur(6px);
}

/* =======================================
   DATEPICKER STYLE (base container only)
======================================= */
#datepicker { width: 180px; margin: 0 20px 20px; }
#datepicker > span:hover { cursor: pointer; }

.ajax-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #dc3545;
    color: white;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    opacity: 0;
    transition: opacity .35s ease-in-out;
}
.ajax-banner.show { opacity: 1; }
.ajax-banner .close-banner {
    background: none;
    border: 0;
    color: white;
    font-size: 20px;
    cursor: pointer;
}







