.otp-login-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.otp-login-form {
	position: relative;
	width: 100%;
	max-width: 420px;
	margin: 0 auto;
	background: #fff;
	padding: 30px 25px;
	border-radius: 13px;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
	
	transition: all 0.3s ease;
}

.otp-login-form .account-logo-wrapper{
	display: block;
	margin-bottom: 20px; 
	text-align: center;
}

.otp-login-form h1 {
	margin-bottom: 25px;
	color: #f43f5e;
	font-size: 20px;
	text-align: center;
}

.otp-login-form label {
	display: block;
	text-align: right;
	margin-bottom: 5px;
	font-weight: bold;
	color: #555;
}

.otp-login-form input {
	width: 100%;
	padding: 12px 15px;
	margin-bottom: 15px;
	border-radius: 10px;
	border: 1px solid #ccc;
	font-size: 16px;
	transition: all 0.3s ease;
}

.otp-login-form input:focus {
	outline: none;
	border-color: #f43f5e;
	box-shadow: 0 0 5px rgba(118,75,162,0.5);
}

.otp-login-form .btn-section-otp {
	width: 100%;
	padding: 12px;
	margin-top: 10px;
	border: none;
	border-radius: 10px;
	background: #f43f5e;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.otp-login-form .btn-section-otp:hover:enabled {
	background: #E91E63;
}

.otp-login-form .btn-section-otp:disabled {
	background: #ccc;
	cursor: not-allowed;
}

.otp-login-form .otp-bottom-row {
	margin-top: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.otp-login-form .reset-login {
	width: 40px;
	height: 40px;
	background: #f5f5f5;
	border-radius: 100%;
	position: absolute;
	top: 10px;
	right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	cursor: pointer;
}

p.copyright-login-footer {
	margin-bottom: 0;
	margin-top: 20px;
	font-size: 13px;
	text-align: initial;
	color: #494c52;
	line-height: 23px;
}
p.copyright-login-footer a.linkp {
	color: #0071e3;
	position: relative;
	font-weight: 600;
	border-bottom: 1px solid #0071e3;
}
p.copyright-login-footer a {
	color: #333;
	font-weight: 600;
}