﻿@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

/* Master Layout Fix */
.auth-node-master {
	background: #050505;
	margin: 0;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #fff;
}

.auth-main-wrapper {
	width: 100%;
	max-width: 450px; /* Thoda wide rakha hai taaki daba na lage */
	padding: 20px;
	z-index: 10;
}

/* The Glass Box - Open & Breathable */
.auth-glass-box {
	background: rgba(20, 20, 20, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 30px;
	padding: 60px 40px; /* High vertical padding for better spacing */
	backdrop-filter: blur(20px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
	text-align: center;
}

/* Brand Section */
.auth-logo {
	width: 80px;
	margin-bottom: 20px;
	filter: drop-shadow(0 0 10px rgba(250, 204, 21, 0.2));
}

.auth-main-title {
	font-size: 24px;
	font-weight: 800;
	margin: 0;
	letter-spacing: -0.5px;
	color:white;
}

.auth-line-divider {
	width: 40px;
	height: 3px;
	background: #facc15;
	margin: 15px auto 40px;
	border-radius: 2px;
}

/* Input Group Styling */
.node-input-group {
	text-align: left;
	margin-bottom: 25px;
}

	.node-input-group label {
		font-size: 10px;
		font-weight: 800;
		color: #555;
		text-transform: uppercase;
		letter-spacing: 1px;
		margin-bottom: 8px;
		display: block;
	}

.node-input-container {
	background: #000;
	border: 1px solid #222;
	border-radius: 12px;
	display: flex;
	align-items: center;
	padding: 5px 15px;
	transition: 0.3s;
}

	.node-input-container:focus-within {
		border-color: #facc15;
	}

	.node-input-container i {
		color: #333;
		font-size: 20px;
		margin-right: 12px;
	}

.node-input {
	background: transparent !important;
	border: none !important;
	color: #fff !important;
	padding: 12px 0 !important;
	width: 100%;
	outline: none;
	font-size: 14px;
}

/* Button Styling */
.btn-node-submit {
	width: 100%;
	background: #facc15;
	color: #000;
	border: none;
	padding: 16px;
	border-radius: 12px;
	font-weight: 800;
	font-size: 12px;
	letter-spacing: 1px;
	cursor: pointer;
	transition: 0.3s;
	margin-top: 10px;
}

	.btn-node-submit:hover {
		background: #fff;
		transform: translateY(-3px);
	}

/* Links & Footer */
.node-link-forgot {
	font-size: 10px;
	color: #444;
	text-decoration: none;
	font-weight: 700;
}

.auth-bottom-nav {
	margin-top: 40px;
	font-size: 13px;
	color: #444;
}

	.auth-bottom-nav a {
		color: #fff;
		text-decoration: none;
		font-weight: 700;
		border-bottom: 1px solid #facc15;
	}

.node-status-error {
	font-size: 12px;
	color: #ff4d4d;
	font-weight: 600;
}
