body {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

.login-container {
	background: white;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	padding: 3rem;
	max-width: 400px;
	width: 100%;
	text-align: center;
}

.login-header {
	margin-bottom: 2rem;
}

.login-header h1 {
	font-size: 1.75rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 0.5rem;
}

.login-header p {
	color: #666;
	font-size: 0.95rem;
	margin: 0;
}

.login-icon {
	font-size: 3rem;
	color: #667eea;
	margin-bottom: 1rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.btn-google {
	background: white;
	border: 2px solid #ddd;
	color: #333;
	font-weight: 600;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	width: 100%;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	text-decoration: none;
}

.btn-google:hover {
	border-color: #667eea;
	background-color: #f9f9f9;
	color: #667eea;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.google-icon {
	width: 20px;
	height: 20px;
}

.divider {
	display: flex;
	align-items: center;
	margin: 1.5rem 0;
	color: #999;
	font-size: 0.85rem;
}

.divider::before,
.divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #ddd;
}

.divider::before {
	margin-right: 0.75rem;
}

.divider::after {
	margin-left: 0.75rem;
}

.login-footer {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid #eee;
	color: #666;
	font-size: 0.85rem;
}

.error-alert {
	display: none;
	margin-bottom: 1.5rem;
}

.error-alert.show {
	display: block;
}
