/* PVB Login Frontend Styles */
body.pvb-login-page {
	background: #39356e !important;
}

/* Override Beaver Builder #wrapper !important rule with higher specificity */
body.pvb-login-page #wrapper,
body.pvb-login-page .wp-site-blocks,
.pvb-login-page #wrapper,
.pvb-login-page .wp-site-blocks {
	background: #39356e !important;
}

.auth-container {
	min-height: 100vh;
	background: #39356e;
	color: #ffffff;
	padding: 50px;
}

.auth-card {
	display: block;
	margin: 0 auto;
	background: #fff;
	border-radius: 8px;
	padding: 2rem;
	width: 100%;
	max-width: 400px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	border: 1px solid rgba(94, 92, 197, 0.1);
}

.auth-header {
	text-align: center;
	margin-bottom: 2rem;
}

.auth-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #5e5fc5;
}

.auth-subtitle {
	color: #6c757d;
}

.auth-error {
	background: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
	padding: 1rem;
	border-radius: 8px;
	margin-bottom: 1.5rem;
	text-align: center;
}

.auth-success {
	background: #d1ecf1;
	border: 1px solid #bee5eb;
	color: #0c5460;
	padding: 1rem;
	border-radius: 8px;
	margin-bottom: 1.5rem;
	text-align: center;
}

.auth-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-label {
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #5e5fc5;
}

.form-input {
	padding: 12px;
	border: 2px solid #ddd;
	border-radius: 11px;
	font-size: 16px;
	transition: border-color 0.2s;
	background: #fff;
	color: #495057;
}

.form-input:focus {
	outline: none;
	border-color: #5e5fc5;
}

.form-actions {
	margin-top: 1rem;
}

.btn {
	display: inline-block;
	padding: 20px 0 20px 0;
	background: linear-gradient(133deg, #6A11CB, #2575FC);
	color: white;
	text-decoration: none;
	text-align: center;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.2s ease;
	width: 100%;
}

.btn:hover {
	background: linear-gradient(133deg, #7d15f1, #2d46ff);
	transform: translateY(-2px);
}

.btn-discord {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.auth-links {
	text-align: center;
	margin-top: 1.5rem;
}

.auth-link {
	color: #007cba;
	text-decoration: none;
	font-weight: 500;
}

.auth-link:hover {
	text-decoration: underline;
}

.password-error-message {
	display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
	.auth-container {
		padding: 1rem;
	}

	.auth-card {
		padding: 1.5rem;
	}

	.auth-title {
		font-size: 1.5rem;
	}
}
