.login {
	position: fixed;
	width: 100%;
	height: 100%;
}
.loginIn {
	position: fixed;
	width: 100%;
	height: 100%;
}
.loginLogo {
	width: auto;
	height: 50px;
}
.lgnWrap {
	width: 450px;
  	margin: auto;
    margin-top: auto;
	margin-top: 30px;
	overflow: auto;
	padding: 15px 15px;
	border-radius: 50%;
	border-radius: 15px;
	background: #ffffff;
	border: 1px solid var(--bs-border-color);
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.login_logo_image_div {
	padding-top: 35px;
	margin: auto;
	width: 100%;
	overflow: hidden;
	text-align: center;
}
.lgnFrm {
	text-align: center;
	border: none;
	padding: 0px;
}
.lgnFrm h3 {
	/* font: bold 22px verdana; */
	margin: 0;
	color: #458dd5;
	/*text-shadow: 1px 1px 5px #000;*/
}
.lgnFrm .list-group {
  border: 1px solid var(--bs-border-color);
}
.lgnFrm .list-group-item {
  border: none !important;
}
.checkout-btn-form {
	width: 100%;
}

/* Razorpay Checkout Button Bootstrap Look */
.razorpay-payment-button,
.razorpay-payment-button:active,
.razorpay-payment-button:focus,
.razorpay-payment-button:hover {
  display: inline-block;
  font-weight: 500;
  color: #fff !important;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: #0d6efd !important; /* Bootstrap Primary Blue */
  border: 1px solid #0d6efd !important;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.375rem; /* Rounded corners */
  transition: color 0.15s ease-in-out, 
              background-color 0.15s ease-in-out, 
              border-color 0.15s ease-in-out, 
              box-shadow 0.15s ease-in-out;
  cursor: pointer;
  width: inherit;
}

/* Hover State */
.razorpay-payment-button:hover {
  background-color: #0b5ed7 !important;
  border-color: #0a58ca !important;
}

/* Focus State */
.razorpay-payment-button:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25) !important;
}

/* Active State */
.razorpay-payment-button:active {
  background-color: #0a58ca !important;
  border-color: #0a53be !important;
  box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25) !important;
}

/* Disabled State (if Razorpay disables it during loading) */
.razorpay-payment-button:disabled {
  opacity: 0.65;
  pointer-events: none;
}





@-webkit-keyframes scaleAnimation {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scaleAnimation {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes drawCircle {
  0% {
    stroke-dashoffset: 151px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes drawCircle {
  0% {
    stroke-dashoffset: 151px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes drawCheck {
  0% {
    stroke-dashoffset: 36px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes drawCheck {
  0% {
    stroke-dashoffset: 36px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.statusIconCircle {
  stroke-dasharray: 151px 151px;
  stroke: #fff;
}

.statusIconCheck {
  stroke-dasharray: 36px 36px;
  stroke: #fff;
}

.statusIconResult {
  fill: #fff;
  opacity: 0;
}

.statusIcon.animated {
  -webkit-animation: 1s ease-out 0s 1 both scaleAnimation;
          animation: 1s ease-out 0s 1 both scaleAnimation;
}
.statusIcon.animated .statusIconCircle {
  -webkit-animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCircle, 0.3s linear 0.9s 1 both fadeOut;
          animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCircle, 0.3s linear 0.9s 1 both fadeOut;
}
.statusIcon.animated .statusIconCheck {
  -webkit-animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCheck, 0.3s linear 0.9s 1 both fadeOut;
          animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCheck, 0.3s linear 0.9s 1 both fadeOut;
}
.statusIcon.animated .statusIconResult {
  -webkit-animation: 0.3s linear 0.9s both fadeIn;
          animation: 0.3s linear 0.9s both fadeIn;
}


.animated #crossLine1,
.animated #crossLine2 {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: draw 400ms ease-out forwards;
}

.animated #crossLine2 {
  animation-delay: 120ms;
}

@keyframes draw {
  to { stroke-dashoffset: 0; }
}