@charset "UTF-8";
:root {
  --vs-primary: 29 92 255;
}

/*Dialog Styles*/
dialog {
	top: 100px;
	padding: 1rem 3rem 3rem;
	background: #111;
	min-width: 400px;
	padding-top: 2rem;
	border-radius: 10px;
	border: 0;
	box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.8);
	margin: 0 auto;
	outline: none;
	-webkit-animation: fadeIn 0.3s ease both;
		  animation: fadeIn 0.3s ease both;
}
dialog::-webkit-backdrop {
	-webkit-animation: fadeIn 0.3s ease both;
		  animation: fadeIn 0.3s ease both;
	background: rgba(0, 0, 0, 0.4);
	z-index: 2;
	-webkit-backdrop-filter: blur(20px);
		  backdrop-filter: blur(20px);
}
dialog::backdrop {
	-webkit-animation: fadeIn 0.3s ease both;
		  animation: fadeIn 0.3s ease both;
	background: rgba(0, 0, 0, 0.4);
	z-index: 2;
	-webkit-backdrop-filter: blur(20px);
		  backdrop-filter: blur(20px);
}
dialog .x {
	filter: grayscale(1);
	border: none;
	background: none;
	position: absolute;
	top: 15px;
	right: 15px;
	transition: ease filter, transform 0.3s;
	cursor: pointer;
	transform-origin: center;
	z-index: 200;
}
dialog .x:hover {
	filter: grayscale(0);
	transform: scale(1.1);
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.rst-inwrap { position: relative; min-width: 700px; }
.rst-inwrap h1 { display: block; text-align: center; color: #fff; font-size: 14px; }

.rst-inwrap .form-liner { display: block; margin: 10px 0 0; }
.rst-inwrap .form-liner .namelabel { display: block; padding: 10px 10px 5px; color: #666; font-size: 12px; text-align: left; }
.rst-inwrap .form-liner .input-box { display: block; position: relative; }
.rst-inwrap .form-liner .input-box .dup-button { display: inline; color: #3f83ff; font-size: 12px; position: absolute; top: 15px; right: 15px; cursor: pointer; }
.rst-inwrap .form-liner .pds { margin: 10px 0 0; }
.rst-inwrap .login-button { display: block; height: 50px; border-radius: 10px; background-image: linear-gradient(to right, #973cf3 , #3cf396); cursor: pointer; font-size: 16px; color: #fff; line-height: 48px; text-align: center; margin: 10px 0 0; transition: all 150ms ease-in-out; }
.rst-inwrap .login-button:hover { background: #973cf3; }
.rst-inwrap .rst-button { display: block; height: 50px; border: 2px #3f83ff solid; border-radius: 10px; cursor: pointer; font-size: 14px; color: #fff; line-height: 48px; text-align: center; margin: 10px 0 0; transition: all 150ms ease-in-out; }
.rst-inwrap .rst-button:hover { background: #3f83ff; }
.rst-inwrap .form-liner input { width: 100%; height: 40px; border: 2px #3a3c45 solid; border-radius: 10px; background: #050505; text-indent: 15px; font-size: 14px; color: #fff; transition: all 150ms ease-in-out; position: relative; left: -2px; }
.rst-inwrap .form-liner input:focus { outline: none; border: 2px #56466b solid; background: #111; }
.rst-inwrap .form-liner input:hover { border: 2px #56466b solid; background: #111; }
.rst-inwrap .form-liner input::placeholder { color: #777; font-size: 12px; }
.rst-inwrap .form-liner select { width: 100%; height: 40px; border: 2px #3a3c45 solid; border-radius: 10px; background: #050505; text-indent: 10px; font-size: 14px; color: #fff; transition: all 150ms ease-in-out; position: relative; left: -2px; }
.rst-inwrap .form-liner select option { background: #1f2126; }

.ddlog .form-liner input { width: 100%; height: 55px; border: 1px #3a3c45 solid; border-radius: 10px; background: #151515; text-indent: 15px; font-size: 14px; color: #fff; transition: all 150ms ease-in-out; position: relative; left: 0; }
.ddlog .form-liner input:focus { outline: none; border: 1px #00ff78 solid; background: #222; }
.ddlog .form-liner input:hover { border: 1px #00ff78 solid; background: #222; }
.ddlog .form-liner input::placeholder { color: #777; font-size: 12px; }
.ddlog .form-liner select { width: 100%; height: 55px; border: 1px #3a3c45 solid; border-radius: 10px; background: #151515; text-indent: 10px; font-size: 14px; color: #fff; transition: all 150ms ease-in-out; position: relative; left: 0; }
.ddlog .form-liner select option { background: #1f2126; }

@media all and (max-width:900px){
	dialog { top: 20px; min-width: 340px; padding: 1rem 1rem 2rem; }
	.rst-inwrap { min-width: auto; }
}













