body {
  overflow: hidden;
  /* font-family: Whitney, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif; */
   font-family: 'glametrixbold';
}

.resheader {
  display: none;
}

.signupimg {
  height: 443px;
  width: 360px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.Wholeconatiner {
  width: 65%;
  margin: auto;
  padding: 20px;
  display: flex;
  box-shadow: 6px 6px 12px #c5c5c594, -6px -6px 12px #d2d2d287;
  border-radius: 25px;
  margin-top: 5%;
  position: relative;
  background: white;
  z-index: 50;
  animation: cardAppear 1s ease-out;

}
@keyframes cardAppear {
  from {
      opacity: 0;
      transform: translateY(50px) scale(0.9);
  }
  to {
      opacity: 1;
      transform: translateY(0) scale(1);
  }
}
.Signupcls {
  font-size: 30px;
  font-weight: 800;
  text-shadow: -1px -1px 0 #fff, 1px 1px 0 #000;
  color: #143769;
}

.RegHeader {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  font-size: 26px;
}

.Img {
  width: 46px;
  height: 36px;
  margin-top: 32%;
  animation: floatup 12s linear infinite;
}

.Subcontainer {
  padding: 20px;
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 443px;
  width: 250px;
  background-color: #143769;
}

.Submitbtn {
  padding: 30px;
  padding: 26px 0px 0px 10px;
}

.Resendbtndiv {
  padding: 30px;
  padding: 26px 0px 0px 10px;
}

.Mobdiv {
  padding: 10px;
}

.Header {
  margin: auto;
}

.Pandiv {
  margin-top: 45%;
  padding: 0px 0px 30px 0px;
}



/* ---------Button Css--------- */
button {
  --primary-color: #ffff;
  --secondary-color: #fff;
  --hover-color: #645bff;
  --arrow-width: 10px;
  --arrow-stroke: 2px;
  box-sizing: border-box;
  border: 0;
  border-radius: 20px;
  color: var(--secondary-color);
  padding: 1em 1.8em;
  background: var(--primary-color);
  display: flex;
  transition: 0.2s background;
  align-items: center;
  gap: 0.6em;
  font-weight: bold;
  color: black;
  cursor: pointer;
}

button .arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

button .arrow {
  margin-top: 1px;
  width: var(--arrow-width);
  background: var(--primary-color);
  height: var(--arrow-stroke);
  position: relative;
  transition: 0.2s;
}

button .arrow::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  border: solid #ffffff;
  border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
  display: inline-block;
  top: -3px;
  right: 3px;
  transition: 0.2s;
  padding: 3px;
  transform: rotate(-45deg);
}

button:hover {
  background-color: #6c94ec;
  color: white;
}

button:hover .arrow {
  background: var(--secondary-color);
}

button:hover .arrow:before {
  right: 0;
}

/* ---------Button CssEnd--------- */


.top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 198px;
  height: 117px;
  background: linear-gradient(45deg, #09264e, #2b6dff9c);
  border-bottom-right-radius: 200px;
}

/* ---------Bubble Css--------- */
.container {
  position: absolute;
  width: 100vh;
  height: 35vh;
  top: 0;
  left: 0;
  z-index: 0;
}

.bubble {
  position: absolute;
  bottom: -150px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.8), rgba(0, 173, 255, 0.2));
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  opacity: 0.6;
  animation: floatup 12s linear infinite;
}

.bubble:nth-child(1) {
  left: 1%;
  width: 30px;
  height: 30px;
  animation-duration: 8s;
}

.bubble:nth-child(2) {
  left: 128%;
  width: 30px;
  height: 30px;
  top: 51%;
  animation-duration: 11s;
  animation-delay: 2s;
}

.bubble:nth-child(3) {
  left: 83%;
  width: 50px;
  height: 50px;
  animation-duration: 10s;
  animation-delay: 4s;
  opacity: 0.4;
}

.bubble:nth-child(4) {
  left: 119%;
  width: 30px;
  height: 30px;
  animation-duration: 12s;
  animation-delay: 1s;
}

.bubble:nth-child(5) {
  left: 38%;
  width: 30px;
  height: 30px;
  animation-duration: 9s;
  animation-delay: 5s;
}

@keyframes floatup {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-50px);
  }

  100% {
    transform: translateY(0);
  }
}

/* ---------Bubble Cssend--------- */


/* ---------Successcard Css--------- */
.diamond-bg {
  position: fixed;
  width: 100vw;
  height: 50vh;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.diamond {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  /* border: 1px solid rgb(5, 5, 5); */
  border-radius: 8px;
  transform: rotate(45deg);
  animation: bounce 1s infinite;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.diamond:nth-child(1) {
  left: 38%;
  bottom: -62px;
  animation-duration: 13s;
  border: 1px solid black;
  /* background: radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.8), rgba(0, 173, 255, 0.2));
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1); */
  width: 40px;
  height: 40px;
}

.diamond:nth-child(2) {
  left: 25%;
  top: 125%;
  animation-duration: 8s;
  animation-delay: 3s;
  border: 1px solid black;
  width: 40px;
  height: 40px;
}

.diamond:nth-child(3) {
  left: 37%;
  bottom: 98px;
  animation-duration: 10s;
  animation-delay: 2s;
  border: 1px solid black;
  width: 40px;
  height: 40px;
}

.diamond:nth-child(4) {
  left: 85%;
  bottom: -90px;
  animation-duration: 12s;
  animation-delay: 6s;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
    transform: rotate(45deg) translateY(0) scale(1);

  }

  50% {
    transform: translateY(-30px);
  }

  100% {
    transform: rotate(45deg) scale(1);
    opacity: 0.3;

  }
}

/* ---------Successcard Cssend--------- */

/* -------wavy circlecss----- */
.title {
  letter-spacing: -1px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 24px;
  padding: 0px 0px 23px 35px;
  font-family: ui-monospace;
}

.title::before,
.title::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 50%;
  left: 0px;
  background-color: royalblue;
}

.title::before {
  width: 14px;
  height: 14px;
  background-color: royalblue;
}

.title::after {
  width: 14px;
  height: 14px;
  animation: pulse 1s linear infinite;
}

@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }

  to {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* -------wavy circlecssend----- */


/* -------ErrorToast----- */
.toast {
  display: flex;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  border-radius: 8px;
  position: absolute;
  width: 23%;
  background: white;
  z-index: 99;
  top: 15px;
  align-items: center;
  animation: moveRightToQuarter 0.4s linear forwards;
  animation-fill-mode: forwards;
}

@keyframes moveRightToQuarter {
  from {
    left: 100vw;
  }

  to {
    left: 75vw;
  }
}

.toast.error {
  border-left: 5px solid #F44336;
}

.toast.error .message-header {
  color: #F44336;
  font-weight: bold;
}

.toast.error .icon {
  color: #F44336;
  font-size: 20px;
}

.Msg {
  padding: 2px 0px 0px 20px;
}

/* Close Button Styling */
.toast .close-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #a0a0a0;
  padding: 5px 0px 0px 10px;
}

/* -------ErrorToastend----- */

/* -------Otpdesign----- */
.otp-input {
  width: 44px;
  height: 40px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  border: 2px solid #e9ecef;
  border-radius: 8px;
}

label {
  color: white;
}

.Otpdiv {
  padding: 0px 0px 16px 0px;
  margin-top: 33%;
}

.otplabel {
  padding: 15px 0px;
  font-size: 20px;
}

.Otp-group {
  padding: 0px 0px 0px 10px;
  /* margin-top: 23%; */
}

.otp-info {
  background: transparent;
  border: 1px dotted #e8ebeb;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  margin: auto;
  color: white;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgb(143 136 136);
}

.otp-info-text {
  font-size: 14px;
  margin-bottom: 10px;
  font-size: 20px;
}

.otp-timer {
  font-weight: bold;
  /* color: #667eea; */
  font-size: 20px;
}

/* -------Otpdesignend----- */


/* -------OtpdError----- */
.alert-mask-blue-white {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.45s cubic-bezier(.68, -0.55, .27, 1.55), opacity 0.6s;
  z-index: 999;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 82%, rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 82%, rgba(0, 0, 0, 0));
  animation: shake 0.55s 1;
  font-size: 21px;
}

@keyframes shake {

  10%,
  90% {
    transform: translateX(-1px);
  }

  20%,
  80% {
    transform: translateX(2px);
  }

  30%,
  50%,
  70% {
    transform: translateX(-4px);
  }

  40%,
  60% {
    transform: translateX(4px);
  }
}

.alert-mask-blue-white.show {
  transform: translateX(-50%) scaleY(1);
  opacity: 1;
}

.alert-content-blue-white {
  background: #ffffff;
  color: #174ea6;
  border-radius: 15px;
  padding: 26px 32px 26px 18px;
  box-shadow: 0 6px 24px rgba(20, 40, 120, 0.09);
  border-left: 5px solid #2980ef;
  position: relative;
  display: flex;
  gap: 10px;

}

.closebtn {
  position: absolute;
  right: 11px;
  top: 20px;
  font-size: 1.4em;
  color: #174ea6;
  cursor: pointer;
  transition: color .2s;
}

.closebtn:hover {
  color: #2980ef;
}

/* -------OtpdErrorend----- */



/* -------Bodypattern----- */
.containerbg {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.geometric-shape {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 400px;
  height: 400px;
}

.shape-layeradd1 {
  position: absolute;
  border-radius: 20px;
}

.shape-1 {
  width: 100%;
  height: 100%;
  opacity: 0.8;
  left: -43%;
  top: 20%;
  box-shadow: 0 20px 40px rgb(0 0 0 / 22%);
  background: #f1faff00;
}

.shape-2 {
  width: 100%;
  height: 90%;
  top: -84%;
  left: -31%;
  opacity: 0.7;
  box-shadow: 0 20px 40px rgb(0 0 0 / 4%);
}

.shape-3 {
  width: 80%;
  height: 80%;
  top: 59%;
  left: 69%;
  opacity: 0.7;
  box-shadow: 0 20px 40px rgb(0 0 0 / 10%);
}


@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}


.geometric-shapeadd1 {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 400px;
  height: 400px;
}

.shape-layer {
  position: absolute;
  border-radius: 20px;
}

.shape-1add1 {
  width: 100%;
  height: 100%;
  /* opacity: 0.8; */
  box-shadow: 0 20px 40px rgb(0 0 0 / 5%);
  margin-top: -25%;
  left: 17%;
  border-radius: 5%;
  background: linear-gradient(45deg, #09264e, #2b6dff9c);
}

.shape-2add1 {
  width: 90%;
  height: 90%;
  /* opacity: 0.7; */
  margin-top: -42%;
  box-shadow: 0 20px 40px rgb(0 0 0 / 11%);
  margin-left: -87%;
  background: linear-gradient(45deg, #09264e, #2b6dff9c);
}

.shape-3add1 {
  width: 80%;
  height: 80%;
  top: 163%;
  box-shadow: 0 20px 40px rgb(0 0 0 / 9%);
  margin-top: -83%;
  margin-left: 62%;
  /* background: aliceblue; */
}


/* @media (max-width: 768px) {
  .abstract-text {
    font-size: 32px;
    letter-spacing: 4px;
    top: 20px;
    left: 20px;
  }

  .geometric-shape {
    width: 300px;
    height: 300px;
    right: -80px;
  }
}


@media (max-width: 768px) {
  .abstract-text {
    font-size: 32px;
    letter-spacing: 4px;
    top: 20px;
    left: 20px;
  }

  .geometric-shapeadd1 {
    width: 300px;
    height: 300px;
  }
} */
/* -------Bodypatterncss----- */


/* -------Spinnercss----- */
.circle-spinner {
  display: none;
  width: 32px;
  height: 32px;
  border: 4px dotted #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: rotate 0.7s linear infinite;
  margin-bottom: 20px;
  margin: auto;
  margin-left: 75px;
  margin-top: 10px;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

/* -------Spinnercssend----- */


/* -------Inputdesign----- */
.inputContainer {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inputField {
  border: 1px solid white;
  /* background-color: transparent; */
  border-radius: 10px;
  padding: 12px 15px;
  color: white;
  font-weight: 500;
  outline: none;
  /* caret-color: rgb(155, 78, 255); */
  transition-duration: .3s;

}

.userIcon {
  position: absolute;
  fill: rgb(155, 78, 255);
  width: 20px;
  top: -23px;
  left: -20px;
  opacity: 0;
  transition: .2s linear;
}

.usernameLabel {
  position: absolute;
  top: -22px;
  left: 5px;
  color: white;
  font-size: 20px;
  font-weight: 400;
  overflow: hidden;
  transition: .2s linear;
  opacity: 0;
}

.inputField:focus~.usernameLabel,
.inputField:valid~.usernameLabel {
  transform: translateX(20px);
  opacity: 1;
}

.inputField:focus~.userIcon,
.inputField:valid~.userIcon {
  transform: translateX(20px);
  opacity: 1;
}

.inputField:focus,
.inputField:valid {
  background-color: white;
  transition-duration: .3s;
  color: black;
}

::placeholder {
  color: #646161;
}

/* -------Inputdesignend----- */

/* -------Successcard----- */
.success-mainsuc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgb(255 255 255 / 95%);
  border-radius: 22px;
  padding: 3rem 4.5rem;
  text-align: center;
  box-shadow: 0 6px 64px 0 rgba(44, 180, 255, 0.19);
  z-index: 2;
}

@media (max-width:600px) {
  .success-main {
    padding: 1.5rem 0.5rem;
    width: 90vw;
  }
}

.shapesuc {
  position: absolute;
  opacity: 0.63;
  pointer-events: none;
  z-index: 1;
}

.diamondsuc {
  width: 20px;
  height: 20px;
  top: 141px;
  left: 7vw;
  transform: rotate(45deg);
  animation: floatDia 9s infinite alternate cubic-bezier(.78, 0, .21, 1.01);
  border: 1px solid;
}

@keyframes floatDia {
  to {
    transform: rotate(70deg) translateY(-32px) scale(1.08);
  }
}

.bubblesuccess {
  border-radius: 50%;
  animation: floatB 7.3s infinite alternate cubic-bezier(.64, -0.01, 0, .93);
  filter: blur(0.5px);
  border: 1px solid;
}

.bubblesuccess1 {
  width: 20px;
  height: 20px;
  top: 92px;
  left: 26vw;
  animation-delay: .3s;
}

.success-iconsuc {
  margin: 0 auto 18px auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #24d293 70%, #6ff0d2 100%);
  position: relative;
  box-shadow: 0 0 40px #0ff9, 0 2px 8px #0be8;
}

.success-checksuc {
  width: 37px;
  height: 20px;
  border-left: 6px solid #fff;
  border-bottom: 6px solid #fff;
  border-radius: 5px;
  transform: rotate(-45deg) scale(0);
  opacity: 0;
  animation: drawCheck 0.7s 0.2s cubic-bezier(.63, 1.9, .26, -0.41) forwards;
  position: absolute;
  left: 16px;
  top: 18px;
}

@keyframes drawCheck {
  to {
    transform: rotate(-45deg) scale(1);
    opacity: 1;
  }
}

.Signupsuccesscard {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(16px);
  display: flex;
  /* background: white; */
  justify-content: center;
  align-items: center;
  z-index: 999;
  font-size: 22px;
}

/* confirmAlert Mask */

.alert-overlayConfirm {
  position: fixed;
  inset: 0;
  /* background: rgba(255, 165, 0, 0.25); orange-tinted background */
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1100;
  animation: fadeInOverlay 0.5s ease forwards;
}

.alert-containerConfirm {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  max-width: 340px;
  width: 80%;
  box-shadow: 0 14px 30px rgb(124 119 119 / 25%);
  text-align: center;
  animation: popIn 0.5s ease forwards;
  transform-origin: center bottom;
}

.alert-iconConfirm {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0535a0 0%, #6c94ec 50%, #143769 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 32px;
  font-weight: bold;
  box-shadow: 0 0 10px #999897;
  animation: pulseIconConfirm 0.5s ease infinite alternate;
  user-select: none;
}

@keyframes pulseIconConfirm {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px #b8b7e7;
  }

  100% {
    transform: scale(1.1);
    box-shadow: 0 0 25px #d2dafc;
  }
}

.alert-titleConfirm {
  font-size: 31px;
  color: #143769;
  text-shadow: 0 1px 1px #000000;
  user-select: none;
}

.alert-messageConfirm {
  font-size: 23px;
  padding: 7px 0px 12px 0px;
  user-select: none;
}

.alert-close-btnConfirm {
  padding: 9px 26px;
  border: none;
  border-radius: 25px;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(192, 191, 189, 0.4);
  transition: background-color 0.25s ease, transform 0.15s ease;
  user-select: none;
  background: linear-gradient(135deg, #0535a0 0%, #6c94ec 50%, #143769 100%);
}

.alert-close-btnConfirm:hover {
  background: radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.8), rgba(0, 173, 255, 0.2));
  transform: scale(1.05);
  color: black;

}

.Confirmbtnwholediv {
  display: flex;
  justify-content: center;
  gap: 26px;
}

/*confirmAlert Mask End*/

   
/* SuccessMobno Card*/
.alert-mask {
  position: fixed;
  inset: 0;
  /* background: rgba(255, 165, 0, 0.25); orange-tinted background */
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Alert container */
.alert-box {
  position: relative;
  width: 280px;
  padding: 28px 32px 36px 32px;
  background: #fff;
  border-radius: 16px;
  border: 2px solid #2e7d32;
  /* green outline */
  box-shadow: 0 10px 22px rgba(46, 125, 50, 0.12);
  text-align: center;
  overflow: visible;
}

/* Floating bubble with green outline */
.bubbleMobsuc {
  position: absolute;
  top: 30px;
  left: 40px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #2e7d32;
  box-shadow: 0 0 6px rgba(46, 125, 50, 0.25);
  background: transparent;
  animation: floatUpDown 4s ease-in-out infinite alternate;
  opacity: 0.85;
  z-index: 2;
}

/* Floating triangle outline */
.triangle {
  position: absolute;
  top: 68px;
  right: 38px;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 24px solid transparent;
  animation: floatDownUp 3.5s ease-in-out infinite alternate;
  opacity: 0.85;
  z-index: 2;
}

.triangle::before {
  content: "";
  position: absolute;
  top: -24px;
  left: -14px;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 24px solid #2e7d32;
  opacity: 0.15;
}

/* Floating animations */
@keyframes floatUpDown {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.05);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes floatDownUp {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(9px) scale(0.96);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

/* Text styling */
.alert-title {
  font-weight: 700;
  font-size: 1.4rem;
  color: #2e7d32;
  margin-bottom: 10px;
}

.alert-message {
  font-size: 1rem;
  color: #375a24;
  margin-bottom: 30px;
  line-height: 1.4;
}

/* Button styling */
.alert-btn {
  cursor: pointer;
  background: #2e7d32;
  border: none;
  color: #fff;
  padding: 10px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 22px;
  box-shadow: 0 6px 14px rgba(46, 125, 50, 0.35);
  transition: background-color 0.3s ease;
}

.alert-btn:hover {
  background-color: #255d27;
}

/* SuccessMobno CardEnd*/


/* -------Successcardend----- */

@media only screen and (min-width:300px) and (max-width:500px) {
  .resheader{
    font-size: 3rem;
    color: #2c3e50;
    animation-name: slideScaleIn;
    animation-duration: 3s;
    animation-fill-mode: forwards; /* Keep final state */
    }
    @keyframes slideScaleIn {
      from {
        transform: translateX(150vw) scale(2);
        opacity: 0;
      }
      to {
        transform: translateX(0) scale(1);
        opacity: 1;
      }
    }

  .success-mainsuc{
    width: 90%;
    padding: 1rem 2.5rem;
  }
  .Header {
    display: none;
  }
  .diamondsuc{
    top: 84px;
    left: 7vw;
  }
  .bubblesuccess1{
    top: 92px;
    left: 74vw;
  }
  .success-checksuc{
    left: 11px;
    top: 15px;
  }
  .success-iconsuc{
    width: 55px;
    height: 55px;
  }
  .top-left {
    display: none;
  }
  .otp-info{
    width: 83%;
  }
  .otp-info-text{
    font-size: 19px;
  }
  .otp-timer{
    font-size: 19px;
  }
  .Wholeconatiner {
    background-color: unset;
    width: 100% !important;
    margin: auto !important;
    display: unset;
    box-shadow: unset;
  }

  .Subcontainer {
    height: 46%;
    width: 91%;
    margin: auto;
    background-color: #143769;
    border-top-left-radius: 31px;
  }

  .Img {
    height: 50px;
    width: 50px;
  }

  .signupimg {
    height: 276px;
    object-fit: cover;
    width: 100%;
    border-bottom-right-radius: 31px;
  }

  .Pandiv {
    margin-top: 16%;
    padding: 0px 0px 30px 0px;
  }

  .Otpdiv {
    margin-top: 3%;
  }

  .toast {
    width: 50%;
    padding: 7px 16px;
  }

  .Msg {
    font-size: 10px;
  }

  @keyframes moveRightToQuarter {
    from {
      left: 100vw;
    }

    to {
      left: 50vw;
    }
  }

  .resheader {
    display: block;
    color: black;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
  }

  .Signupimgdiv {
    width: 91%;
    margin: auto;
  }
  .geometric-shapeadd1 {
    display: none;
  }
  .geometric-shape {
    display: none;

  }
}


@media only screen and (min-width:501px) and (max-width:700px) {

  .signupimg {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .Header {
    display: none;
  }

  .Wholeconatiner {
    background-color: unset;
    width: 99%;
  }

  .geometric-shapeadd1 {
    width: 0;
    height: 0;
  }

  .geometric-shape {
    width: 200px;
    height: 200px;
  }

  .shape-1 {
    left: 32%;
    top: -226%;
  }

  .shape-2 {
    top: -198%;
    left: -74%;
  }

  .shape-2add1 {
    margin-top: -94%;
    margin-left: -99%;
  }

  .shape-1add1 {
    margin-top: -33%;
  }

  .shape-3 {
    top: -60%;
    left: 191%;
    width: 150%;
    height: 150%;

  }

  .resheader {
    display: block;
    color: black;
    text-align: center;
    font-weight: bold;
    FONT-SIZE: 25PX;
  }

}

@media only screen and (min-width:701px) and (max-width:1000px) {
  .Wholeconatiner {
    width: 98%;
    margin-top: 20%;
  }
  .container {
    height: 36vh;
  }
  .signupimg {
    height: 443px;
    width: 264px;
    /* OBJECT-FIT: cover; */
  }

  .Subcontainer {
    width: 200px;
  }

  .RegHeader {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    font-size: 24px
  }
  .title {
    font-size: 28PX;
  }

  .inputField {
    width: 164px;
  }
  .bubble:nth-child(1) {
    left: 1%;
    width: 30px;
    height: 30px;
    top: 126%;
    animation-duration: 8s;
  }
  .bubble:nth-child(2) {
    left: 65%;
    top: 26%;
  }
  .bubble:nth-child(3) {
    left: 38%;
    top: 113%;
  }
  .bubble:nth-child(4) {
    left: 62%;
    top: 106%;
  }
  .bubble:nth-child(5) {
    left: 11%;
    top: 107%;
  }
  .Img {
    margin-left: -77%;
    margin-top: 26%;
  }

  .diamond:nth-child(1) {
    left: 23%;
    bottom: 179px;
  }

  .diamond:nth-child(3) {
    left: 15%;
    bottom: 264px;
  }

  .diamond:nth-child(2) {
    left: 7%;
    top: 84%;
  }

  .geometric-shapeadd1 {
   display: none;
  }

  .geometric-shape{
    display: none;
   }
  
}

@media only screen and (min-width:1001px) and (max-width:1500px) {
  .Wholeconatiner {
    width: 95%;
    margin-top: 6%;
  }

  .geometric-shapeadd1 {
    display: none;
   }
 
   .geometric-shape{
     display: none;
    }
  .bubble:nth-child(3) {
    left: 90%;
    top: 166%;
  }

  .bubble:nth-child(4) {
    left: 131%;
    top: 196%;
  }

  .bubble:nth-child(2) {
    top: 51%;
    left: 151%;
  }

  .diamond:nth-child(1) {
    left: 31%;
    bottom: -71px;
  }

  .diamond:nth-child(2) {
    left: 7%;
    top: 161%;
  }

  .diamond:nth-child(3) {
    left: 24%;
    bottom: 132px;
  }
}


#Nid,#Rid{
  font-weight: bold;
  color: #37629f;
  font-size: 32px;
}
#Fid,#Sid{
  font-weight: bold;
  color: #4CAF50;
  font-size: 32px;
}

.bgimg{
  width: 62%;
  margin-left: -19%;
  margin-top: 0%;
}
.Integlogo{
  width: 27%;
}