* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.container {
	background: rgba(70, 70, 70, 0.4);
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	padding: 40px;
	width: 100%;
	max-width: 600px;
	backdrop-filter: blur(3px);
}
h1 {
	margin-bottom: 30px;
	color: #f5f5f5;
	text-align: center;
}
.form-group {
	margin-bottom: 20px;
}
.content {
	color: #eee;
	margin-top: 5px;
	text-align: center;
}
.description {
	font-size: 14px;
	color: #eee;
	margin-top: 5px;
	text-align: center;
}
label {
	display: block;
	margin-bottom: 5px;
	color: #fafafa;
	font-weight: 500;
}
input {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
}
input:focus {
	outline: none;
	border: 5px solid;
	border-color: rgba(245, 165, 255, 1.0);
}
button, .oauth-button {
	width: 100%;
	padding: 12px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
	display: block;
	text-align: center;
	margin-bottom: 10px;
}
button { color: white; background: #85a; }
button:not(.btn-disabled):hover { background: #a5e; }
button:focus-visible {
	outline-color: #fafafa;
	outline-offset: 5px;
	background: #a5e;
	box-shadow: 0 0px 18px rgba(200, 165, 245, 0.36);
}
.error {
	background: #ffe8eb;
	color: #c62828;
	padding: 10px;
	border-radius: 4px;
	margin-bottom: 20px;
	text-align: center;
}
.success {
	background: #e5f2e6;
	color: #2e7d32;
	padding: 10px;
	border-radius: 4px;
	margin-bottom: 20px;
	text-align: center;
}
.center { text-align: center; justify-content: center; align-items: center; }
.btn-disabled { opacity: 0.6; cursor: not-allowed; }
.links { margin-top: 20px; text-align: center; }
.links a { color: #BF80F4; }
.links a:hover { color: #CA82FB; text-decoration: underline; }
.policy-text {
	font-size: .90rem;
	color: #aaa;
	margin-top: 25px;
	line-height: 1.4;
	text-align: center;
}
.policy-text a { color: #BF80F4; text-decoration: none; }
.policy-text a:hover { text-decoration: underline;}
ul { margin-left: 12px; font-size: 16px; }
.mt { margin-top: 10px; }
.ib { display: inline-block; }
.emoji {
	text-align: center; 
	font-size: 48px; 
	margin-bottom: 20px; 
	color: #fafafa;
}