:root {
  /* Layout */
  --page-pad: 28px;
  --panel-radius: 26px;

  /* Showcase card variables (right side) */
  --card-w: 420px;
  --card-h: 640px;
  --outer-radius: 22;
  /* px */
  --notch-radius: 22;
  /* px */
  --notch-cut-x: 68;
  /* % from left where notch starts */
  --notch-cut-y: 78;
  /* % from top where notch starts */
 
  /* Colors */
  --bg1: #ff8756;
  --bg2: #cf6a54;
  --panel: #fff;
  --text: #0f172a;
  --muted: #7b8a98;
  --brand: #ff7a21;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial;
  color: var(--text);
  /* background:
        radial-gradient(1200px 700px at 0% 0%, #ffb193 0 40%, transparent 70%),
        linear-gradient(135deg, var(--bg1), var(--bg2)); */
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 28px);
}

.login_page {
  background: linear-gradient(135deg, #ff4c00, #ffb193, #c65000);
}

.shell {
  width: min(1053px, 100%);
  background: var(--panel);
  border-radius: var(--panel-radius);
  box-shadow: 0 24px 80px rgba(16, 24, 40, 0.18);
  padding: clamp(16px, 2.5vw, 28px);
  overflow: hidden;
}

.shell .row {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
}

/* ---------- LEFT: FORM ---------- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 6px 18px;
}

.field {
  margin: 18px 6px;
}

.field label {
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 14px;
}

.field .input {
  width: min(448px, 100%);
  height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid #e7e7e7;
  outline: none;
  font-size: 16px;
  color: #0b1320;
  background: #ffffff;
}

.field .input::placeholder {
  color: #c1c9d2;
}

.remember {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 30px 6px 0px;
  color: #263442;
  font-weight: 600;
}
.remember span{
  font-size: 14px;
  font-weight: 500;
}

.remember input {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #e7e7e7;
  display: grid;
  place-items: center;
}

.remember input:checked {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px #ffe5d2;
}

.remember input:checked::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
}

/* ---------- RIGHT: SHOWCASE CARD ---------- */
.right {
  display: grid;
  place-items: center;
}

.card {
  position: relative;
  width: min(var(--card-w), 100%);
  height: min(var(--card-h), 70vh);
  border-radius: calc(var(--outer-radius) * 1px);
  background: #eee;
  overflow: visible;
}

/* real image layer clipped by mask */
.card .clip {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  -webkit-mask: url(#notch-mask);
  mask: url(#notch-mask);
}

.card .clip .img {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1505483531331-469f3c3b1ca4?q=80&w=1600&auto=format&fit=crop")
    center/cover no-repeat;
  filter: saturate(115%);
}

.card::after {
  /* the white inner frame */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 14px solid #ffffff;
  -webkit-mask: url(#notch-mask);
  mask: url(#notch-mask);
  pointer-events: none;
}

.scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 0 45%,
    rgba(0, 0, 0, 0.35) 100%
  );
  -webkit-mask: url(#notch-mask);
  mask: url(#notch-mask);
}

.chips {
  position: absolute;
  left: 26px;
  right: 26px;
  top: 190px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.chip {
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  border: 1.6px solid rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
}

.chip.active {
  color: #333;
  background: #fff;
  border-color: #fff;
  font-weight: 600;
}

.blurb {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 120px;
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 18px;
  padding: 20px 20px 22px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 800;
  line-height: 1.25;
  font-size: 28px;
}

.nav {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: flex;
  gap: 14px;
}

.nbtn {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e5eaf0;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.18);
  cursor: pointer;
}

.nbtn svg {
  width: 22px;
  height: 22px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .row {
    grid-template-columns: 1fr;
  }

  /* .right {
    order: -1;
  } */

  .card {
    margin-inline: auto;
    height: 520px;
  }
}

.left{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.left h1 {
  margin-top: 30px;
  margin-bottom: 35px;
  font-size: 30px;
  font-weight: 700;
  
}
    .left .btn-admin {
        box-shadow: 0px 0px 35px #ef5f35;
        border-radius: 20px;
        margin-bottom: 30px;
        margin-top: auto;
    }
/* clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%); */

.box {
  width: 412px;
  height: 587px;
  /* background: linear-gradient(135deg, #ff4c00, #ffb193, #c65000); */
  background-image: url("../img/login_bg.jpg");
  color: white;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 66% 90%, 66% 100%, 0 100%);
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}

.parent {
  filter: url("#goo");
  overflow: hidden;
  z-index: 1;
}
.box1 {
  width: 100%;
  height: 244px;
  background-image: url("../img/blur.png");
  background: #ffffff;
  color: white;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 63% 75%, 63% 100%, 0 100%);
}
.parent1 {
  filter: url("#goo");
  overflow: hidden;
  z-index: 1;
}

.second_shape {
  position: absolute;
  width: calc(100% - 40px);
  bottom: 20px;
  left: 20px;
}
.right {
  position: relative;
}
.right .slick-arrow-two {
  position: absolute;
  right: 6px;
  bottom: 0px;
  z-index: 1;
}
.right .slick-arrow-two li {
  border: 1px solid #e7e7e7;
  height: 41px;
  border-radius: 6px;
  line-height: 41px;
  font-size: 18px;
  width: 61px;
}

.content_tab_login {
  margin: 0 5px 15px;
  cursor: pointer;
  border: 1px solid #fff;
  padding: 10px 15px;
  border-radius: 12px;
}
.content_tab_login.slick-active {
  background-color: #fff;
}
.content_tab_login p {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400;
}
.content_tab_login.slick-active p {
  background: -webkit-linear-gradient(0deg, #ff6f00, #ff9466);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.otp_cnfrm{
  position: relative;
  display: inline;

}
.otp_cnfrm::before{
  content: "\F272";
  position: absolute;
  font-size: 20px;
  color: #32c66b;
  width: 30px;
  height: 30px;
  border: 1px solid;
  right: 15px;
  top: -4px;
  font-family: 'bootstrap-icons';
      text-align: center;
    border-radius: 50%;
}



/**************
  Rajni style
**************/
@media only screen and (max-width: 1599px) {
  .box {
    max-height: 80vh;
  }
}
@media only screen and (max-width: 991px) {
  .form-step.active{
  }
  .box{
    width: 49vw;
  }
  .right{
    padding-right: 0;
  }
  .right .slick-arrow-two{
    right: 0;
  }
  .right .slick-arrow-two li{
    width: 55px;
  }
  .shell .row{
        grid-template-columns: 0.9fr 1.2fr ;
  }
}

@media only screen and (max-width: 767px) {
    .right .slick-arrow-two li {
        width: 50px;
    }
    .left h1 {
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: 26px;
        font-weight: 700;
    }
    .field{
      margin-left: 0;
    }
    .second_shape .feedback-block-four blockquote{
      margin-top: 0;
      padding-bottom: 15px;
    }
}
@media only screen and (max-width: 640px) {
    .right .slick-arrow-two li {
        width: 40px;
    }
    .box1{
      height: auto;
    } 
}
@media only screen and (max-width: 575px) {
  .shell .row{
    display: block;
  } 
  .box{
    width: 90vw;
    max-height: 325px;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 66% 88%, 66% 100%, 0 100%);
  }
  .right{
    padding-right: 10px;
  }
  .shell .slider-container{
    height: 330px;
  }
  .second_shape .feedback-block-four blockquote{
    margin-top: 0;
  }
  .right .slick-arrow-two li {
    width: 50px;
  }
}













