/* =========================================================
   Public pages (Landing + Admin Login)
   Reused styles (no duplicate CSS across these pages)
   ========================================================= */
:root {
  --topbar: #2c8ebd;
  --topbar-dark: #1f7da7;
  --gold: #d5a22b;
  --gold-2: #dfb143;
  --text: #1e2429;
  --muted: #5f6a73;
  --ring: 0 0 0 3px rgba(46, 160, 207, 0.25);
  --font: "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font: 14px/1.35 var(--font);
  color: var(--text);
  background: #eaf3f4;
}

/* Screen-reader only helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   Topbar
   ========================================================= */
.topbar {
  background: linear-gradient(90deg, #2a86b4 0%, #2f93c2 45%, #2a86b4 100%);
  color: #fff;
  width: 100%;
}
.topbar__inner {
  height: 85px;
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  width: min(1170px, 100%);
  margin: 0 auto;
  padding-right: 22px;
}
.topbar__brand {
  height: 85px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
}
.brand__mark {
  width: 220px;
  height: 73px;
  border-radius: 0;
  background: transparent url("../../assets/logo.png") left / contain no-repeat;
  box-shadow: none;
}
.brand__name {
  display: none;
}
.topbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.pill {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.pill--gold {
  background: linear-gradient(0deg, var(--gold), var(--gold-2));
  color: #fff;
}
.pill--gold:hover {
  filter: brightness(0.98);
}
.pill:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}
.contact {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
}
.contact strong {
  font-weight: 700;
  font-size: 15px;
}
.contact small {
  display: block;
  /* opacity: 0.9; */
  font-size: 15px;
  color: #FFCC00;
  font-weight: 700; 
}
.contact svg {
  display: block; 
}

.icb_topbar .contact {
  grid-template-columns: 34px 1fr; 
}

.topbar__right .contact + .contact {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: 18px;
  margin-left: 18px;
}
/* =========================================================
   Hero background + layout
   ========================================================= */
/*.hero {
  min-height: calc(100vh - 85px - 54px);
  background: radial-gradient(900px 500px at 30% 20%, rgba(109, 208, 196, 0.35), transparent 60%),
    radial-gradient(700px 420px at 70% 35%, rgba(91, 171, 218, 0.28), transparent 62%),
    linear-gradient(180deg, #d7efe6 0%, #eef7f5 40%, #e9f1f1 100%);
  position: relative;
  padding: 36px 18px 28px;
}*/

.hero {
  min-height: calc(100vh - 85px - 54px);
  background: url("../../assets/each_mainlogin_bg") no-repeat center center / cover !important;
  position: relative;
  padding: 36px 18px 28px; 
}


/* Light geometric overlay (similar feel to screenshot) */
/*.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 35%),
    repeating-linear-gradient(60deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 38px),
    repeating-linear-gradient(-60deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 44px);
  opacity: 0.55;
  pointer-events: none;
} */

.welcome,
.panel {
  position: relative;
  z-index: 1;
}

.welcome {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 18px ;
}
.welcome__title {
  margin: 0;
  font-size: 25px;
  font-weight: 600;
  color: #25343d;
}
.welcome__title span {
  color: #d5a22b;
}
.welcome__text {
  margin: 10px auto 0;
  /* max-width: 86ch; */
  font-size: 15px;
  color: #000000;
  line-height: 19px;
}

/* =========================================================
   Center panel (white container + cards)
   ========================================================= */
.panel {
  max-width: 920px;
  margin: 18px auto 0;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  padding: 30px 30px;
}
.panel--narrow {
  max-width: 560px;
}
.panel--narrow .panel__inner {
  justify-items: center;
}
.panel--narrow .card--admin {
  width: 400px;
  max-width: 100%;
  padding: 34px;
}
.panel--clear {
  background: transparent;
  box-shadow: none;
}
.panel--pad80 {
  padding-left: 80px;
  padding-right: 80px;
}
.login--tight .input {
  margin: 4px 0;
}
.login--tight .errorMsg {
  margin-top: -1px;
  margin-bottom: 4px;
}
.panel__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.card {
  border-radius: 10px;
  padding: 20px 22px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2), 0 6px 14px rgba(0, 0, 0, 0.12);
  color: #fff;
  position: relative;
}
.card__title {
  margin: 0;
    text-align: center;
    font-size: 19px;
    font-weight: 600;
}
.card__text {
  margin: 10px 0 25px 0px;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
}
.card__divider {
  height: 5px;
  width: 64px;
  margin: 14px auto 32px;
  background: rgba(45, 141, 188, 0.9);
  border-radius: 99px;
}

.card--register {
  background: linear-gradient(90deg, #1c87be 0%, #1976a5 25%, #0d5b80 100%);
}
.card--login {
  background: linear-gradient(180deg, #4f6a79 0%, #486270 40%, #445e6b 100%);
}

/* Admin login card variant */
.card--admin {
  background: #ffffff;
  color: #1e2429;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}
.card--admin .card__title {
  color: #2f8fbe;
}

/* Buttons */
.btn {
  appearance: none;
  border: 0;
  border-radius: 4px;
  padding: 9px 16px;
  font: 800 14px/1 var(--font);
  cursor: pointer;
  transition: transform 120ms ease, filter 120ms ease, background 120ms ease;
}
.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}
.btn:hover {
  transform: translateY(-1px);
}

.btn--gold {
  display: block;
  margin: 0 auto;
  min-width: 150px;
  background: linear-gradient(0deg, #FFB411, #CE900B);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  font-size: 16px;
  font-weight: 600;
}

.btn--gold:hover {
  filter: brightness(0.98);
}
.btn--blue {
  background: #2f8fbe;
  color: #fff;
}
.btn--blue:hover {
  background: #277ca3;
}
.btn--dark {
  background: #3c5360;
  color: #fff;
}
.btn--dark:hover {
  background: #2e414c;
}

/* Inputs */
.input {
  height: 34px;
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 4px;
  padding: 0 6px;
  margin: 10px 0;
}
.input.is-invalid {
  border-color: #d0586e;
}
.input.is-invalid:focus-within {
  box-shadow: 0 0 0 3px rgba(208, 88, 110, 0.18);
  border-color: #d0586e;
}
.errorMsg {
  margin-top: -4px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #ee0731;
  min-height: 14px; /* keep layout stable */
}
.card--admin .errorMsg {
  color: #ee0731;
}
.input:focus-within {
  box-shadow: var(--ring);
  border-color: rgba(46, 160, 207, 0.55);
}
.input__icon {
  display: grid;
  place-items: center;
  align-self: stretch;
  padding-right: 10px;
  margin-right: 6px;
  border-right: 1px solid #CCCCCC;
}
.input input {
  border: 0;
  outline: none;
  font: 14px/1 var(--font);
  padding: 0;
  width: 100%;
}
.input input::placeholder {
  color: #a0aab4;
}
.input__action {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  border-radius: 6px;
}
.input__action:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.login__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}
.link {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
}
.card--admin .link {
  color: #3c5360;
}
.link:hover {
  text-decoration: underline;
}
.link:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 6px;
  padding: 2px 4px;
}

.hint {
  margin: 10px 0 0;
  min-height: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}
.card--admin .hint {
  color: #5f6a73;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  height: 54px;
  background: #3d5561;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
}
.footer__inner {
  width: min(1170px, 100%);
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.banner_login{
	max-width: 430px;
    margin-left: auto !important;
}

.customerlogin_column input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #000 !important;
  transition: background-color 5000s ease-in-out 0s;
}

/*.each_forgotpass_ftr{position: absolute;
    bottom: 0;
    width: 100%;
}*/
.newgen_messageset{ 
color:#FFF;
font-weight:normal;
background-color: #1e8603 !important;
border-radius: 5px !important;
border: 1px solid #028a3b!important;
font-size: 15px !important;

}


/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .topbar__inner {
    grid-template-columns: 220px 1fr;
    padding-right: 14px;
  }
  .panel {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .topbar__inner {
    grid-template-columns: 1fr;
    height: auto;
    padding: 10px 14px;
    row-gap: 10px;
  }
  .topbar__brand {
    height: auto;
    padding: 0;
    justify-content: center;
  }
  .topbar__actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .topbar__right {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    gap: 17px;
  }
  .topbar__right .contact + .contact {
    border-left: 0;
    padding-left: 0;
    margin-left: 0;
  }
  .pill--gold {
    margin: 0 auto;
  }
  .panel__inner {
    grid-template-columns: 1fr;
  }
  .footer {
    height: auto;
    padding: 10px 0;
  }
  .footer__inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .panel--pad80 {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.icb_account_card .card  .errorMsg{
  color: #ffa0b2; 
}



.card--admin .card__title {
  color: #284758;
  font-weight: 600;
  font-size: 22px;     
}

.icb_pannerrow .panel--narrow{ 
  max-width: max-content;
}

.icb_account_card .card--login .btn--blue{
  font-size: 16px;
  font-weight: 600;
}


.icb_account_card .card--login .input{
  margin: 10px 0 3px 0;
  grid-template-columns: 37px 1fr 27px
}


.icb_account_card .card--login .link{
  font-weight: 600;
}
.topbar .pill {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  font-size: 15px;
}

.icb_admin_login_outer .card--admin{
  width: 480px;
  max-width: 100%;
  padding: 20px 80px 20px 80px;
} 


.icb_admin_login_outer .btn--dark {
  background: #3c5360;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.icb_admin_login_btn{
  min-width: 92px;
}

.icb_admin_login_outer .card--admin .link {
  color: #3c5360;
  font-weight: 600;
  font-size: 15px;
}

.icb_card_forgot_pass_btn {
  background: #2f8fbe;
  color: #fff;
  font-size: 15px !important;
  font-weight: 600  !important;
}

.leftmenu_active{
  background: #0391c3;
}

.icb_forgot_pass_outer{
  width: 520px;
  max-width: 100%;
  padding: 40px 44px;

}
.icb_forgot_pass_innner{
  width: 360px;
  max-width: 100%;
  margin: 0 auto;
}
/* my css start hrer responsive*/

@media (max-width: 700px){
  .brand__mark {
    background-position: center;
}
.regWrap{
  width: min(700px, calc(100% - 5px));
}


.icb_regform_inner{
  width: 100% !important;  
}

.icb_admin_login_outer .card--admin {
  width: 100%;
  max-width: 100%;
  padding: 20px 20px 20px 20px;
}

.panel--narrow .card--admin{
  width: 100%;
}
.icb_forgot_pass_outer{
  width: 100%;
}

.icb_forgot_pass_innner{
  width: 100%; 
}

}
