* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

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

.auth-page {
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.auth-container {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 20px;
	width: 100%;
}

.auth-card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	padding: 50px;
	max-width: 450px;
	width: 100%;
	animation: slideUp 0.5s ease-out;
}

.login-card {
	background: white;
}

.login-header {
	text-align: center;
	margin-bottom: 40px;
}

.login-title {
	color: #2c3e50;
	font-size: 2rem;
	margin-bottom: 8px;
	font-weight: 700;
}

.login-subtitle {
	color: #7f8c8d;
	font-size: 1.25rem;
	font-weight: 400;
}

.login-form {
	margin-bottom: 30px;
}

.form-group {
	margin-bottom: 24px;
	position: relative;
}

.form-group input {
	width: 100%;
	padding: 12px 14px;
	border: 2px solid #ecf0f1;
	border-radius: 8px;
	font-size: 1.5rem;
	transition: all 0.3s ease;
	background: #f8f9fa;
	color: #2c3e50;
}

.form-group input:focus {
	outline: none;
	border-color: #667eea;
	background: white;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-label {
	display: block;
	margin-bottom: 8px;
	color: #2c3e50;
	font-weight: 600;
	font-size: 1.5rem;
}

.form-error {
	display: block;
	color: #e74c3c;
	font-size: 1.25rem;
	margin-top: 6px;
}

.btn {
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
	border: none;
	cursor: pointer;
	font-size: 1.5rem;
}

.btn-primary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	width: 100%;
	padding: 14px 24px;
	font-size: 1.5rem;
}

.btn-primary:hover {
	background: linear-gradient(135deg, #5568d3 0%, #6a3d8f 100%);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-primary:active {
	transform: translateY(0);
}

.btn-login {
	width: 100%;
	margin-bottom: 20px;
}

.btn-secondary {
	background: #ecf0f1;
	color: #2c3e50;
}

.btn-secondary:hover {
	background: #d5dbdd;
}

/* Alerts */
.alert {
	padding: 14px 16px;
	border-radius: 8px;
	margin-bottom: 24px;
	display: flex;
	gap: 12px;
	font-size: 1.5rem;
}

.alert-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
}

.alert-content {
	flex: 1;
}

.alert-error {
	background: #ffebee;
	border-left: 4px solid #e74c3c;
	color: #c0392b;
}

.alert-warning {
	background: #fff3e0;
	border-left: 4px solid #f39c12;
	color: #d68910;
}

.alert-info {
	background: #e3f2fd;
	border-left: 4px solid #3498db;
	color: #1e5ba8;
}

.alert-content p {
	margin: 0;
}

/* Footer Links */
.auth-footer {
	border-top: 1px solid #ecf0f1;
	padding-top: 24px;
	text-align: center;
}

.footer-text {
	margin-bottom: 12px;
	font-size: 1.25rem;
}

.footer-link {
	color: #667eea;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.footer-link:hover {
	color: #764ba2;
	text-decoration: underline;
}

.footer-link-primary {
	color: #667eea;
}

.footer-link-primary:hover {
	color: #764ba2;
}

.footer-divider {
	color: #95a5a6;
	font-size: 1.25rem;
	margin: 16px 0 12px 0;
}

/* Confirmation Pages */
.confirmation-header {
	text-align: center;
	margin-bottom: 30px;
}

.success-icon {
	font-size: 3.75rem;
	color: #27ae60;
	margin-bottom: 15px;
	display: block;
}

.warning-icon {
	font-size: 3.75rem;
	color: #f39c12;
	margin-bottom: 15px;
	display: block;
}

.error-icon {
	font-size: 3.75rem;
	color: #e74c3c;
	margin-bottom: 15px;
	display: block;
}

.confirmation-header h1 {
	color: #2c3e50;
	font-size: 2rem;
	margin: 0;
	font-weight: 700;
}

.confirmation-message {
	text-align: center;
	margin-bottom: 30px;
}

.main-message {
	font-size: 1.5rem;
	color: #2c3e50;
	font-weight: 600;
	margin-bottom: 10px;
}

.description {
	color: #7f8c8d;
	font-size: 1.25rem;
	margin: 0;
}

.next-steps {
	background: #f8f9fa;
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 30px;
	border-left: 4px solid #667eea;
}

.next-steps h3 {
	margin-top: 0;
	color: #2c3e50;
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 12px;
}

.next-steps ol,
.next-steps ul {
	margin: 0;
	padding-left: 20px;
	color: #555;
}

.next-steps li {
	margin-bottom: 8px;
	line-height: 1.6;
}

.info-box {
	background: #e3f2fd;
	border-left: 4px solid #2196f3;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 30px;
	color: #1565c0;
	font-size: 1.5rem;
}

.info-box.error {
	background: #ffebee;
	border-left-color: #e74c3c;
	color: #c0392b;
}

.info-box p {
	margin: 0 0 8px 0;
}

.info-box ul {
	margin: 8px 0 0 0;
	padding-left: 20px;
}

.info-box li {
	margin-bottom: 5px;
}

.action-buttons {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 30px;
}

/* Animations */
@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 600px) {
	.auth-card {
		padding: 30px 20px;
	}

	.login-title {
		font-size: 1.75rem;
	}

	.login-subtitle {
		font-size: 1.25rem;
	}

	.form-group input {
		padding: 10px 12px;
		font-size: 1.5rem;
	}

	.btn {
		padding: 12px 20px;
		font-size: 1.5rem;
	}

	.confirmation-header h1 {
		font-size: 1.75rem;
	}

	.success-icon,
	.warning-icon,
	.error-icon {
		font-size: 3rem;
	}
}
