* {
	box-sizing: border-box;
}

html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}

.wpp-body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background: radial-gradient(circle at top, #1a1a1a 0%, #0b0b0b 100%);
	color: #f5f5f5;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.wpp-wrapper {
	width: 100%;
	max-width: 420px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.wpp-card {
	background: #141414;
	border: 1px solid #262626;
	border-radius: 14px;
	padding: 40px 32px;
	width: 100%;
	text-align: center;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.wpp-logo {
	max-width: 110px;
	max-height: 70px;
	margin-bottom: 18px;
	object-fit: contain;
}

.wpp-logo-text {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin-bottom: 18px;
	color: #ffffff;
}

.wpp-title {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 8px;
	color: #ffffff;
}

.wpp-subtitle {
	font-size: 14px;
	color: #a3a3a3;
	margin: 0 0 28px;
	line-height: 1.5;
}

.wpp-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.wpp-field {
	position: relative;
}

.wpp-input {
	width: 100%;
	padding: 14px 16px;
	background: #1f1f1f;
	border: 1px solid #333333;
	border-radius: 8px;
	color: #ffffff;
	font-size: 15px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wpp-input::placeholder {
	color: #737373;
}

.wpp-input:focus {
	border-color: #e00000;
	box-shadow: 0 0 0 3px rgba(224, 0, 0, 0.15);
}

.wpp-button {
	width: 100%;
	padding: 14px 16px;
	background: #e00000;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.1s ease;
}

.wpp-button:hover {
	background: #c40000;
}

.wpp-button:active {
	transform: scale(0.98);
}

.wpp-error {
	background: rgba(224, 0, 0, 0.12);
	border: 1px solid rgba(224, 0, 0, 0.4);
	color: #ff6b6b;
	font-size: 13px;
	padding: 10px 12px;
	border-radius: 6px;
	text-align: left;
}

.wpp-error.wpp-shake {
	animation: wpp-shake 0.4s ease;
}

@keyframes wpp-shake {
	0%, 100% { transform: translateX(0); }
	20% { transform: translateX(-6px); }
	40% { transform: translateX(6px); }
	60% { transform: translateX(-4px); }
	80% { transform: translateX(4px); }
}

.wpp-footer {
	margin-top: 22px;
	font-size: 12px;
	color: #595959;
	text-align: center;
}

@media (max-width: 480px) {
	.wpp-card {
		padding: 32px 22px;
	}
	.wpp-title {
		font-size: 20px;
	}
}
