
@media (max-width:480px),(max-height:500px){
	.OTP_Validation-visible{
		transform: scale(0.9);
		font-size: 0.9rem;
	}
	.title-row{
		transform: scale(0.9);
		font-size: 0.9rem;
	}
	.content-row 
	{
		transform: scale(0.9);
		font-size: 0.9rem;
	}
	.input-row{
		transform: scale(0.9);
		font-size: 0.9rem;
	}
	#otp_user {
		transform: scale(0.9);
		font-size: 0.9rem;
	}
}

@media (max-width:380px),(max-height:420px){
	.OTP_Validation-visible{
		transform: scale(0.8);
		font-size: 0.8rem;
	}
	.title-row{
		transform: scale(0.8);
		font-size: 0.8rem;
	}
	.content-row 
	{
		transform: scale(0.8);
		font-size: 0.8rem;
	}
	.input-row{
		transform: scale(0.8);
		font-size: 0.8rem;
	}
	#otp_user {
		transform: scale(0.8);
		font-size: 0.8rem;
	}
}
.otp_overlay{
	position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    padding: 1rem;
    background: #000000;
    opacity: .15;
    filter: alpha(opacity=15);
    -moz-opacity: .15;
    z-index: 103;
    display: none;
    align-items:center;
}
.otp_dialog{
	display: none;
    position: fixed;
    width: 380px;
    max-height: 90vh;
    top: 50%;
    left: 50%;
    background-color: #ffffff;
    border: 2px solid #336699;
    padding: 0px;
    z-index: 105 !important;
    font-family: Verdana,sans-serif;
    font-size: 10pt;
}
.OTP_Validation-visible{
	border: 2px black; 
	display:flex !important;
	flex-direction:column !important;
	box-shadow: 1px 1px 5px 1px purple;
    position: fixed !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 10px;
    width:50% !important;
    transition: transform 0.2s ease;
	
}
.title-row{	
    font-family: sans-serif, auto;
    font-size: 1.5em;
    font-weight: 800;
    padding: 5px 5px 5px 5px;
}
.separator-row {
    height: 8px;
    background-color: #95358C;
    margin-bottom: 1rem 0;
    flex-shrink:0;
}

.content-row {
    font-family: sans-serif, auto;
    font-size: 1.25em;
    padding: 10px 25px 5px 25px;
    margin-bottom: 30px;
}

.input-row{
	display:flex;
	flex-direction:column;
	gap:4px;
	align-items:center;
}

.input-row label {
	max-width:300px;
	font-weight: 800;
    font-size: 15px;
    margin-bottom: 6px;
    padding-left:20px;
}
.otp_user_wrapper{
	display:flex; 
	flex-direction:column;
	align-items:flex-start; 
	justify-content:center
}
#otp_user { 
	outline: none; 
	background-color: #d4d4d4; 
	max-width: 400px;
    margin-bottom: 20px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding: 10px 12px;
    border-radius: 6px;
}

.button-row{
	display:flex;
    justify-content:center; !important
}

.otpButton {
    margin-bottom: 20px;
    margin-left: 13%;
    max-height: 25vh;
    font-weight: 600;
    width: 25%;
    flex-shrink: 0;
    padding: 0.6rem;
    font-size: 0.8rem;
    max-width: 84px;
    border-radius: 0.5rem;
    background: #95358C;
    color: #FFFFFF;
    border: none;
}

.btnDisable {
	background-color: #ccc;
	color: #666;
	cursor:not-allowed;
	opacity:0.7;
}