@charset "UTF-8";

/* MAIN WRAPPER */
.authentication-wrapper {
  display: flex;
  flex-basis: 100%;
  min-height: 100vh;
  width: 100%;
}

/* INNER CONTAINER */
.authentication-wrapper .authentication-inner {
  width: 100%;
}

/* BASIC LAYOUT (UPDATED) */
.authentication-wrapper.authentication-basic {
  align-items: flex-start; /* center se upar shift */
  justify-content: center;
  padding-top: 60px; /* TOP SPACE */
  overflow: hidden;
}

/* FORM CONTAINER (UPDATED WIDTH + MARGIN) */
.authentication-wrapper.authentication-basic .authentication-inner {
  max-width: 600px; /* WIDTH BADHA DIYA */
  width: 100%;
  position: relative;
  margin-top: 60px;
}

/* HEIGHT CONTROL */
.authentication-wrapper.authentication-basic .authentication-inner .card {
  min-height: 500px; /* HEIGHT BADHA DIYA */
  z-index: 1;
}

/* BRAND SPACING */
.authentication-wrapper.authentication-basic .authentication-inner .card .app-brand {
  margin-bottom: 2.5rem;
}

/* DECORATION TOP */
.authentication-wrapper.authentication-basic .authentication-inner:before {
  width: 148px;
  height: 148px;
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  background-image: url("data:image/svg+xml,%3Csvg width='148px' height='148px' viewBox='0 0 148 148' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='74' cy='74' r='70' fill='%23696cff' opacity='0.1'/%3E%3C/svg%3E");
}

/* DECORATION BOTTOM */
.authentication-wrapper.authentication-basic .authentication-inner:after {
  width: 243px;
  height: 240px;
  content: "";
  position: absolute;
  bottom: -68px;
  left: -46px;
}

/* INPUT OTP BOX */
.authentication-wrapper .auth-input-wrapper .auth-input {
  max-width: 50px;
  padding: 0.4rem;
  font-size: 150%;
}

/* RESPONSIVE */
@media (max-width: 575.98px) {
  .authentication-wrapper.authentication-basic .authentication-inner {
    max-width: 95%;
  }

  .authentication-wrapper .auth-input-wrapper .auth-input {
    font-size: 1.125rem;
  }
}

/* LIGHT MODE */
.light-style .authentication-wrapper .authentication-bg {
  background-color: #fff;
}

/* LIGHT MODE DECORATION */
.light-style .authentication-wrapper.authentication-basic .authentication-inner:after {
  background-image: url("data:image/svg+xml,%3Csvg width='243px' height='240px' viewBox='0 0 243 240' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='243' height='240' rx='20' fill='%23696cff' opacity='0.05'/%3E%3C/svg%3E");
}