/*
Create Date : 17-04-2025
Create By : SK
Create as part of forgot password functionality
*/
 .d-none{
	display : none!important; 
 }
 .text-red{
	color:red !important;
 }
 .text-green{
	color: green !important;
 }
.form-check {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
}

.form-check-input {
	width: 25px !important;
	height: 25px !important;
	margin: 0;
}

.form-check .form-check-label {
	margin: 0 !important;
	padding: 0 !important;
}

#resendEmailOtpBtn, #resendPhoneOtpBtn {
    color: #007bff !important;
    text-decoration: none;
    background-color: transparent;
}
#resendEmailOtpBtn:hover, #resendPhoneOtpBtn:hover {
    color: #007bff !important;
    font-weight: 600;
}
#resendEmailOtpBtn.disabled, #resendPhoneOtpBtn.disabled, #validateEmailPhoneBtn.disabled{
    color:grey !important;
    font-weight: 600;
}

.zoom-highlight {
	display: inline-block;
  }

  .zoom-effect {
	animation: zoomPop 0.6s ease-in-out;
  }
@keyframes zoomPop {
	0%   { transform: scale(1); opacity: 0.7; }
	50%  { transform: scale(1.5); opacity: 1; }
	100% { transform: scale(1); opacity: 0.7; }
  }

.SubmitSpan button {
	margin-top:20px; 
}