/**
 * General Styles
 */

html {
	scroll-behavior: smooth;
}
body {
	background-color: #121212;
	color: white;
	font: 400 14px/1.25 'Raleway', sans-serif;
}
a {
	color: #68c1e7;
	text-decoration: none;
}
p {
	margin: 0;
}

/**
 * General Typography
 */

h1, h2 {
	font-family: 'Jost', sans-serif;
}
h1 {
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 0;
}

/**
 * Preloader
 */

.preloader {
	background-color: white;
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 999999;
}
.status-image {
	background-image: url('/splash/image/loader.gif');
	background-position: center;
	background-repeat: no-repeat;
	height: 200px;
	left: 50%;
	margin: -100px 0 0 -100px;
	position: absolute;
	top: 50%;
	width: 200px;
}

/**
 * General Navigation
 */

#menu {
	margin-top: 15px;
}
.navbar {
	height: 72px;
	padding-bottom: 15px;
	padding-top: 0;
	z-index: 4;
}

/**
 * Navigation Brand
 */

.navbar-brand {
	color: white;
	font-family: 'Jost', sans-serif;
	font-size: 26px;
	font-weight: 700;
}
.navbar-brand:hover {
	color: white;
}
@media (min-width: 576px) {
	.navbar-brand {
		margin-top: 15px;
	}
}

/**
 * Navigation Links
 */

.nav-link {
	border: 1px solid white;
	border-radius: 30px;
	font-size: 15px;
	font-weight: 700;
	max-width: 100%;
	padding-left: 20px !important;
	padding-right: 20px !important;
	margin-left: 20px;
}
.nav-link:hover {
	box-shadow: 0 0 8px white;
}
.nav-link-login {
	background-color: transparent;
	color: white;
}
.nav-link-login:hover {
	color: white;
}
.nav-link-register {
	background-color: white;
	color: #121212;
}
.nav-link-register:hover {
	color: #121212;
}

/**
 * Navigation Toggler
 */

.navbar-toggler {
	border: 1px solid white;
}

.navbar-toggler:active,
.navbar-toggler:focus,
.navbar-toggler-icon:active,
.navbar-toggler-icon:focus {
	box-shadow: none;
	outline: none;
}

/**
 * Navigation Collapse
 */

.custom-collapse {
	background-color: #121212;
	padding-bottom: 15px;
	padding-top: 15px;
}
.custom-collapse .container {
	background-color: #121212;
}
.custom-collapse .navbar-brand {
	color: white;
}
.custom-collapse .nav-link {
	margin-bottom: 15px;
	margin-right: 20px;
	box-shadow: none !important;
}
.custom-collapse .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

/**
 * Forms
 */

#forms {
	display: flex;
	justify-content: center;
	position: relative;
}
form {
	background-color: #212121;
	border: 1px solid #959595;
	border-radius: 10px;
	display: none;
	padding: 30px;
	position: absolute;
	width: 364px;
	z-index: 5;
}
@media (min-width: 767px) {
	form {
		margin-right: 15px;
		right: 0;
	}
}
.form-header {
	display: flex;
	margin-bottom: 15px;
}
.form-body {
	border: none;
	font-family: 'Jost', sans-serif;
	font-size: 14px;
	font-weight: 400;
}
.form-body > p > a {
	font-style: italic;
}
.form-body > p {
	color: white;
	font: 400 14px/1.25 'Raleway', sans-serif;
	margin-bottom: 15px;
	width: 304px;
}
.form-body > .ajax-response > div {
	margin-bottom: 15px;
}
.modal-footer {
	display: block;
	text-align: left;
}
.modal-footer > p {
	color: white;
	font: 400 14px/1.5 'Jost', sans-serif;
	margin: 0;
	text-align: center;
}
.form-group {
	padding-bottom: 15px;
}
.form-control {
	appearance: none;
	background-color: #121212 !important;
	border: 1px solid #959595 !important;
	border-radius: 10px;
	color: white;
	font: 500 14px/1.25 'Raleway', sans-serif !important;
	padding: 12px;
}
.form-control:focus {
	border: 1px solid #959595 !important;
	box-shadow: none !important;
	color: white !important;
}
.form-control::placeholder {
	color: white;
}
.g-recaptcha {
	background-color: #F9F9F9;
	border: 1px solid #959595;
	border-radius: 10px;
	height: 76px;
	overflow: hidden;
	width: 302px;
}
.g-recaptcha > div > div > iframe {
	height: 76px;
	margin-left: -1px;
	margin-top: -1px;
	width: 302px;
}
.btn[disabled] {
	opacity: 1 !important;
}
.btn:focus,
.btn.active:focus {
	color: white;
	outline: none !important;
}
.btn-custom,
.btn-custom:hover {
	background: linear-gradient(to right, #68c1e7 0%, #ae7eea 100%) !important;
	border: none;
	border-radius: 40px;
	color: white !important;
	font: 400 18px/1.25 'Jost', serif, sans-serif;
	height: 46px;
	padding-left: 30px;
	padding-right: 30px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.ajax-response {
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: white;
}
.btn-close {
	opacity: 0.9;
	color: white;
}
.btn-close:active,
.btn-close:focus {
	box-shadow: none;
	outline: none;
}
.section-title {
	margin-top: 100px;
	margin-bottom: 100px;
}
#mfa-secret {
	font-size: 20px;
	font-family: "Roboto+Mono", monospace;
	font-weight: 700;
	color: black;
}
#qr-code {
	line-height: 0;
}

/**
 * Hero Section
 */

.hero {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: calc(85svh - 72px);
	justify-content: center;
	overflow: hidden;
	position: absolute;
	text-align: center;
	width: 100%;
}

/**
 * Hero Headline
 */

h2 {
	font-weight: 700;
}

h2 > span {
	background: linear-gradient(to right, #68c1e7 0%, #ae7eea 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

@media (max-width: 767px) {
	h2 {
		font-size: 55px;
		margin-bottom: 20px;
	}
}

@media (min-width: 768px) and (max-width: 991px){
	h2 {
		font-size: 70px;
		margin-bottom: 30px;
	}
}

@media (min-width: 992px) {
	h2 {
		font-size: 80px;
		margin-bottom: 40px;
	}
}

/**
 * Action Links
 */

.action-links {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	text-align: center;
}

.action-link {
	align-items: center;
	border-radius: 40px;
	color: white;
	display: inline-flex;
	font: 400 18px/1.25 'Jost', serif, sans-serif;
	height: 46px;
	padding: 0 30px;
}

.whats-new-link {
	background: transparent;
	border: 1px solid white;
}

.get-started-link {
	background: linear-gradient(to right, #68c1e7 0%, #ae7eea 100%);
}

@media (max-width: 575px) {
	.action-links {
		flex-direction: column;
	}
	.action-link {
		justify-content: center;
		max-width: 200px;
		width: 100%;
	}
}

@media (min-width: 576px) {
	.action-links {
		flex-direction: row;
	}
}

/**
 * Light Rays
 */

#light-rays {
	height: 100svh;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
}

/**
 * Footer
 */

footer {
	margin-top: calc(100svh - 72px);
	padding-bottom: 15px;
	padding-top: 15px;
	text-align: center;
}

.footer-links {
	display: flex;
	gap: 20px;
	justify-content: center;
	list-style: none;
	margin: 0 0 15px 0;
	padding: 0;
}
