@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');

body {
	font-family: 'Montserrat';
	font-weight: normal;
	font-style: normal;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: #96bfff;
}

.Background {
	height: 100vh;
	width: 100%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
}

.Background video {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

.Background::after {
	content: '';
	position: absolute;
	object-fit: cover;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100vh;
	background-color: rgba(0,0,0,0.6);
}

.Background .Panel {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 18px;
	position: fixed;
	top: 5%;
	right: 2%;
	z-index: 3;
}

.Background .Panel .ClickSound {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	color: #0c7df5;
	animation: ClickSoundAction 1s infinite alternate;
}

@keyframes ClickSoundAction {
	0% { transform: translateX(0); }
	100% { transform: translateX(-10px); }
}

.Background .Panel button {
	cursor: pointer;
	margin: 0;
	padding: 12px;
	background: #5086ff;
	outline: 0;
	border: 0;
	border-radius: 50%;
	animation: Pulse 1.5s infinite;
	transition: 1s;
}

.Background .Panel button:hover {
	background: #25407d;
}

.ubutton {
	border: 0;
	outline: 0;
	width: 304px;
	height: 48px;
	border-radius: 15px;
	font-size: 18px;
	text-transform: uppercase;
	background: #5086ff;
	cursor: pointer;
	transition: .5s;
}

.ubutton:hover {
	background: #25407d;
}

.Background .Panel img {
	width: 32px;
	height: 32px;
}

@-webkit-keyframes Pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(254, 253, 47, 0.4);
	}
	70% {
		-webkit-box-shadow: 0 0 0 20px rgba(254, 253, 47, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(254, 253, 47, 0);
	}
}

@keyframes Pulse {
	0% {
		-moz-box-shadow: 0 0 0 0 rgba(254, 253, 47, 0.4);
		box-shadow: 0 0 0 0 rgba(254, 253, 47, 0.4);
	}
	70% {
		-moz-box-shadow: 0 0 0 20px rgba(254, 253, 47, 0);
		box-shadow: 0 0 0 20px rgba(254, 253, 47, 0);
	}
	100% {
		-moz-box-shadow: 0 0 0 0 rgba(254, 253, 47, 0);
		box-shadow: 0 0 0 0 rgba(254, 253, 47, 0);
	}
}

img.Logo {
	position: fixed;
	z-index: 3;
	top: 10%;
	left: 2%;
	height: 120px;
}
img.Logo1 {
	position: fixed;
	z-index: 3;
	top: 10.6%;
	left: 2%;
	width: 280px;
	height: auto;
}

.Main {
	position: absolute;
	left: 50%;
	top: 54%;
	transform: translate(-50%,-50%);
	
	z-index: 3;
	width: 350px;
}

.Main .Block .Block-Head {
	text-transform: uppercase;
	text-align: center;
	font-size: 24px;
	margin-bottom: 24px;
}

.Main .Block {
	padding: 18px;
	background: #0d2d7975;
	border-radius: 15px;
	color: #eee;
}

.Main .Block form {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}

input[type='text'], input[type='password'], input[type='email'] {
	height: 42px;
	border-radius: 12px;
	width: 304px;
	outline: 0;
	border: 0;
	margin-bottom: 12px;
	background: #00000087;
	color: #eee;
	border: 1px solid #101010;
	text-align: center;
}

input[type='text']::-webkit-input-placeholder,
input[type='text']::placeholder,
input[type='password']::-webkit-input-placeholder,
input[type='password']::placeholder,
input[type='email']::-webkit-input-placeholder,
input[type='email']::placeholder {
	color: #888;
	padding: 8px 14px 8px 14px;
}

input[type='text']:last-child, input[type='password']:last-child, input[type='email']:last-child {
	margin-bottom: 0;
}

input[type='submit'] {
	border: 0;
	outline: 0;
	width: 304px;
	height: 48px;
	border-radius: 15px;
	font-size: 18px;
	text-transform: uppercase;
	background: #5086ff;
	cursor: pointer;
	transition: .5s;
}

input[type='submit']:hover {
	background: #25407d;
}

.Copyright {
	width: 100%;
	color: #eee;
	text-align: center;
	font-size: 12px;
	margin-top: 18px;
}

[data-panel-change] {
	display: none;
}

.bi-arrow-right-short {
	color: #0c7df5;
}

.Main-Panel {
	position: absolute;
	bottom: 160px;
	right: 320px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.Main-Panel button {
	border: 0;
	outline: 0;
	padding: 5px 15px 5px 15px;
	height: 54px;
	border-radius: 50%;
	font-size: 18px;
	text-transform: uppercase;
	background: #5086ff;
	cursor: pointer;
	transition: .5s;
	position: relative;
}

.Main-Panel button span {
	position: absolute;
	transform: skewY(345deg);
	top: -10px;
	left: 70px;
	color: #5086ff;
	transition: .5s;
}

.Main-Panel button:hover {
	background: #25407d;
}

.Main-Panel button:hover > span {
	color: #25407d;
}

.Flow-Donate {
	display: none !important;
}

#result3 {
	margin-bottom: 14px;
}

.AuthSocial {
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
	margin-top: 20px;
    gap: 14px;
}

.modal {
	transition: 1s;
	display: none;
}

.modal.show {
	display: block;
}

.modal.show .modal-content {
	border-radius: 15px;
	padding: 15px;
}

.modal.show .backstage {
	width: 100%;
    height: 100%;
    background: #000000f2;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 5;
}

.modal.show .modal-dialog {
    position: fixed;
    z-index: 6;
    margin-left: auto;
    margin-right: auto;
    left: 30%;
    right: 30%;
	top: 10%;
    text-align: center;
	width: 100%;
}

.modal.show  .modal-header {
	display: flex;
	align-items: center;
}

.modal.show  .modal-header .modal-title {
	text-align: start;
    font-size: 24px;
    text-transform: uppercase;
	margin: 0;
}

.modal.show  .modal-header button {
    margin-left: auto;
    width: 40px;
    height: 40px;
    background: #00000063;
    outline: 0;
    border: 0;
    border-radius: 10px;
}