:root {
	--bg: #141419;
	--accent: #ff7a00;
	--accent-2: #ffb45b;
	--text: #f7f7f7;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	height: 100%;
	background: var(--bg);
	color: var(--text);
	font-family: "Segoe UI", Tahoma, sans-serif;
}

body {
	display: grid;
	place-items: center;
}

.wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding: 24px;
	text-align: center;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.logo {
	position: relative;
	display: block;
	margin: 30px auto;
	text-align: center;
	-webkit-filter: drop-shadow(0 5px 35px #d2d2d20f);
	filter: drop-shadow(0 5px 35px #d2d2d20f);
}

.logo img {
	max-width: 100%;
	height: auto;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 600;
	color: #ffffff;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(255, 122, 0, 0.35);
}

.btn svg {
	fill: #ffffff;
	width: 30px;
	height: 30px;
	-moz-transition: all 0.3s ease-in-out !important;
	-o-transition: all 0.3s ease-in-out !important;
	-webkit-transition: all 0.3s ease-in-out !important;
	-ms-transition: all 0.3s ease-in-out !important;
	transition: all 0.3s ease-in-out !important;
}
