/* Voconix Modal */
.voconix-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	padding-top: 60px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.5);
	font-family: 'Roboto';
}

.voconix-modal-content {
	background-color: #fff;
	margin: auto;
	padding: 20px 30px;
	border-radius: 8px;
	max-width: 500px;
	position: relative;
	animation: fadeInModal 0.3s ease;
}

#voconix-register-error span{
	font-size: 14px;
	bottom: 40px;
}

#voconix-register-error span.show{
	bottom: 0px;
}

.voconix-modal-content h2{
	margin: 0px;
	font-family: 'Poppins';
}

.voconix-modal-content h4{
	font-size: 16px;
	text-align: center;
	margin: 0px;
	margin-top: 10px;
}

@keyframes fadeInModal {
	from { opacity: 0; transform: translateY(-20px); }
	to { opacity: 1; transform: translateY(0); }
}

.voconix-close-btn {
	position: absolute;
	top: 12px;
	right: 16px;
	color: #aaa;
	font-size: 30px;
	font-weight: bold;
	cursor: pointer;
}

.voconix-close-btn:hover {
	color: #333;
}

.voconix-register-form, .install_block .content {
	display: flex;
	flex-direction: column;
}

.voconix-register-form label {
	margin-top: 12px;
	margin-bottom: 4px;
	font-weight: 500;
	font-size: 16px;
}

.voconix-register-form input {
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
}

.voconix-register-form input:focus {
	border-color: #d4a418;
	outline: none;
}

#voconix-register-submit {
	margin-top: 15px;
	padding: 15px;
	background-color: #051937;
	color: white;
	border: none;
	border-radius: 10px;
	font-weight: bold;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.2s ease;
	z-index: 2;
}

#voconix-register-submit:hover {
	background-color: #d4a418;	
	color: #051937;	
}

.install_block{
	display: none;	
}

.sso_buttons{
	margin-top: 20px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	padding-top: 20px;
	padding-bottom: 10px;
}

.sso_button img{
	width: 20px;
}

.sso_button{
	padding:10px 0px;
	border: 1px solid oklch(0.872 0.01 258.338013);;
	border-radius: 10px;
	display: block;
	text-align: center;
	font-size: 14px;
	margin-bottom: 10px;
	display: flex;
	justify-content: center;
	column-gap: 8px;
	width: 100%;
	color: black !important;
}

.sso_button:hover{
	background-color: oklch(0.967 0.003 264.541992);
}


