/**************************************** Login page styles — BizDNAi dark theme ****************************************/
* { box-sizing: border-box; }

body {
	color: #e6f1ff;
	font-family: 'Segoe UI', Arial, sans-serif;
	font-size: 14px;
	margin: 0;
	padding: 0;
	background: #030810;
	min-height: 100vh;
}

canvas#neural-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
	opacity: 0.45;
}

.login-logo {
	position: relative;
	z-index: 2;
	text-align: center;
	padding-top: 56px;
}
.login-logo img {
	height: 56px;
	width: auto;
}



input { margin: 2px; }

select,
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
	font-size: 16px;
	padding: 11px 12px;
	border: 1px solid rgba(0, 212, 255, 0.25);
	border-radius: 8px;
	margin: 4px 0;
	background: rgba(255, 255, 255, 0.04);
	color: #e6f1ff;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
	border-color: #00D4FF;
	box-shadow: 0 0 12px rgba(0, 212, 255, 0.3);
}
input::placeholder { color: rgba(230, 241, 255, 0.4); }

input[type="submit"],
input[type="button"] {
	height: 46px;
	font-size: 16px;
	font-weight: 700;
	color: #030810;
	font-family: inherit;
	background: linear-gradient(135deg, #00D4FF, #0099cc);
	border: none;
	border-radius: 8px;
	padding: 0 26px;
	cursor: pointer;
	transition: box-shadow 0.2s, transform 0.1s;
}
input[type="submit"]:hover,
input[type="button"]:hover {
	box-shadow: 0 0 18px rgba(0, 212, 255, 0.5);
}
input[type="submit"]:active,
input[type="button"]:active { transform: translateY(1px); }

input[type="checkbox"],
input[type="radio"] {
	width: 18px;
	height: 18px;
	vertical-align: middle;
	accent-color: #00D4FF;
}



.ok {
	padding: 8px 10px;
	margin: 0 0 8px 0;
	color: #6effb0;
	background: rgba(0, 255, 140, 0.08);
	border: 1px solid rgba(0, 255, 140, 0.3);
	border-radius: 6px;
	font-size: 13px;
}
.nok {
	padding: 8px 10px;
	margin: 0 0 8px 0;
	color: #ff7b7b;
	background: rgba(255, 60, 60, 0.08);
	border: 1px solid rgba(255, 60, 60, 0.3);
	border-radius: 6px;
	font-size: 13px;
}



.auth {
	position: relative;
	z-index: 2;
	margin: 32px auto 0;
	width: 400px;
	max-width: 90%;
	text-align: center;
	padding: 32px 28px;
	background: rgba(3, 8, 16, 0.85);
	border: 1px solid rgba(0, 212, 255, 0.2);
	border-radius: 16px;
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 212, 255, 0.08) inset;
}
.auth > div { color: #9fb3c8; }
.auth input[type="text"],
.auth input[type="email"],
.auth input[type="password"] {
	width: 100% !important;
	text-align: center;
}
.auth input[type="submit"],
.auth input[type="button"] { width: 100%; }
.auth_title {
	font-size: 22px;
	letter-spacing: 2px;
	margin-bottom: 22px;
	color: #ffffff;
	font-weight: 700;
}
.auth a { color: #00D4FF; text-decoration: none; }
.auth a:hover { text-decoration: underline; }
.auth table { color: #9fb3c8; width: 100%; }
.auth p, .alert { color: #9fb3c8; }



.success {
	background: rgba(0, 255, 140, 0.08);
	border: 1px solid rgba(0, 255, 140, 0.3);
	border-radius: 6px;
	color: #6effb0;
	padding: 8px;
	font-size: 15px;
	font-weight: bold;
	margin: 10px;
}
.fail {
	background: rgba(255, 60, 60, 0.08);
	border: 1px solid rgba(255, 60, 60, 0.3);
	border-radius: 6px;
	color: #ff7b7b;
	padding: 8px;
	font-size: 15px;
	font-weight: bold;
	margin: 10px;
}
