/* AirConso Username Login Styles */

.airconso-username-login {
	max-width: 400px;
	margin: 50px auto;
	padding: 30px;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.airconso-username-login h3 {
	text-align: center;
	margin: 0 0 30px 0;
	color: #333;
	font-size: 24px;
	font-weight: 600;
}

.airconso-username-login-form {
	display: flex;
	flex-direction: column;
}

.airconso-username-login-form p {
	margin: 0 0 20px 0;
}

.airconso-username-login-form label {
	display: block;
	margin-bottom: 8px;
	color: #333;
	font-weight: 500;
	font-size: 14px;
}

.airconso-username-login-form input[type="text"],
.airconso-username-login-form input[type="password"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 3px;
	font-size: 14px;
	box-sizing: border-box;
	transition: border-color 0.2s;
}

.airconso-username-login-form input[type="text"]:focus,
.airconso-username-login-form input[type="password"]:focus {
	outline: none;
	border-color: #0073aa;
	box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.airconso-login-submit {
	margin-top: 10px;
}

.airconso-username-login-form input[type="submit"] {
	padding: 10px 20px;
	background-color: #0073aa;
	color: white;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: background-color 0.2s;
}

.airconso-username-login-form input[type="submit"]:hover {
	background-color: #005a87;
}

.airconso-username-login-form input[type="submit"]:active {
	background-color: #004a6f;
}

.airconso-login-error {
	color: #d63638;
	background-color: #fcf0f1;
	border-left: 4px solid #d63638;
	padding: 12px;
	margin: 20px 0 0 0;
	border-radius: 3px;
	font-size: 14px;
}

/* Modal Styles */
.airconso-username-login-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	animation: fadeIn 0.3s ease-in;
}

.airconso-username-login-modal.show {
	display: flex;
	align-items: center;
	justify-content: center;
}

.airconso-username-login-modal-content {
	background-color: #fff;
	padding: 30px;
	border-radius: 5px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	max-width: 400px;
	width: 90%;
	position: relative;
}

.airconso-username-login-modal-close {
	position: absolute;
	right: 15px;
	top: 15px;
	font-size: 28px;
	font-weight: bold;
	color: #aaa;
	cursor: pointer;
	border: none;
	background: none;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.airconso-username-login-modal-close:hover {
	color: #000;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Responsive */
@media (max-width: 600px) {
	.airconso-username-login {
		margin: 20px;
		padding: 20px;
	}

	.airconso-username-login h3 {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.airconso-username-login-form input[type="text"],
	.airconso-username-login-form input[type="password"] {
		font-size: 16px;
	}
}
