/**put the css for your plugin here**/

*{
	box-sizing: border-box;
}

body{
	font-family: tahoma;
}

/* Modernized login page visuals (keeps existing layout & structure) */

#theme-main {
	min-height: 100vh;
	background:
		radial-gradient(circle at top left, #1f2937 0, #020617 45%),
		radial-gradient(circle at bottom right, #111827 0, #020617 55%);
	position: relative;
	overflow: hidden;
}

/* Subtle grid overlay similar to home page */
#theme-main::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(to right, rgba(148,163,184,0.05) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(148,163,184,0.05) 1px, transparent 1px);
	background-size: 32px 32px;
	opacity: 0.6;
	pointer-events: none;
	z-index: 0;
}

/* Animated color orbits like the home page */
#theme-main::after {
	content: "";
	position: absolute;
	inset: -200px;
	background:
		radial-gradient(circle at 12% 0%, rgba(59,130,246,0.25) 0, transparent 55%),
		radial-gradient(circle at 88% 25%, rgba(249,115,22,0.25) 0, transparent 55%);
	opacity: 0.85;
	filter: blur(2px);
	animation: auth-orbit 32s linear infinite;
	z-index: -1;
}

/* Ensure content sits above the decorative background */
#theme-main > * {
	position: relative;
	z-index: 1;
}

@keyframes auth-orbit {
	0% {
		transform: translate3d(0, 0, 0) rotate(0deg);
	}
	100% {
		transform: translate3d(0, 0, 0) rotate(360deg);
	}
}

.login-card {
	background: radial-gradient(circle at top left, rgba(148,163,184,0.45), rgba(15,23,42,0.96));
	border-radius: 1.25rem;
	border: 1px solid rgba(148,163,184,0.5);
	box-shadow: 0 18px 45px rgba(15,23,42,0.95);
	backdrop-filter: blur(18px);
	padding: 2rem 1.75rem 1.75rem;
	color: #e5e7eb;
}

.login-title {
	font-size: 1.7rem;
	font-weight: 700;
	margin: 1.2rem 0 1.2rem;
	text-align: center;
	background: linear-gradient(135deg, #38bdf8, #6366f1);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.input-group {
	margin-bottom: 1rem;
}

.input-label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.85rem;
	font-weight: 500;
	color: #cbd5f5;
}

.input-field {
	width: 100%;
	border-radius: 0.75rem;
	border: 1px solid rgba(148,163,184,0.6);
	background: rgba(15,23,42,0.9);
	color: #e5e7eb;
	padding: 0.65rem 0.8rem;
	font-size: 0.95rem;
	outline: none;
	transition: border-color 0.18s ease-out, box-shadow 0.18s ease-out, background-color 0.18s ease-out;
}

.input-field::placeholder {
	color: #6b7280;
}

.input-field:focus {
	border-color: #38bdf8;
	box-shadow: 0 0 0 1px rgba(56,189,248,0.7);
	background: rgba(15,23,42,0.98);
}

.btn-login {
	margin-top: 0.75rem;
	width: 100%;
	border-radius: 999px;
	border: none;
	padding: 0.7rem 1.2rem;
	background: linear-gradient(135deg, #38bdf8, #6366f1);
	color: #ffffff;
	font-size: 0.98rem;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 20px 55px rgba(59,130,246,0.6);
	transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, filter 0.15s ease-out;
}

.btn-login:hover {
	transform: translateY(-1px);
	box-shadow: 0 22px 60px rgba(59,130,246,0.75);
	filter: brightness(1.05);
}

.btn-login:active {
	transform: translateY(1px);
	box-shadow: 0 16px 40px rgba(59,130,246,0.5);
}

/* Small text color tweak for the signup prompt on the dark background */
.small {
	color: #9ca3af;
}

.small .link-primary {
	color: #38bdf8;
	text-decoration: none;
}

.small .link-primary:hover {
	text-decoration: underline;
}