@charset "utf-8";
/* CSS Document */


html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-weight: inherit;
    font-style: normal;
    vertical-align: baseline;
    background: transparent;
	background-repeat: no-repeat;
    border: 0;
    outline: 0;
}

@font-face {
    font-family: 'nasalizationregular';
    src: url('/fonts/nasalization-rg-webfont.woff2') format('woff2'),
         url('/fonts/nasalization-rg-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
	font-family: 'nasalizationregular';
	background-color: #000; 
	margin: 0px; 
	padding: 0px; 
	color: #FFF;
}

canvas {
	background-size: contain;
    position: absolute;
    width: 100% !important;
    height: 100% !important;
	overflow:hidden;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
	
}

#wholebody {
	background-size: cover;
	background-image: url('https://astralforge.net/assets/backgrounds/nicegalaxy.jpg');
	background-repeat: no-repeat;
	width: 100%;
	height: 100%; 
	position: absolute;
}

h2 {
	line-height: 2em;	
	font-weight: 200;
	font-size: large;
}

h1 {
	line-height: 2em; 	
	font-weight: 300;
	font-size: x-large;
}

#loginarea {
	-webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    width: 80%;
    height: 60%;
    background-size: cover;
    background-repeat: no-repeat;
    margin-left: 10%;
    background-color: rgba(0, 0, 0, 0.5);
    border: 5px inset #335A95;
    -webkit-box-shadow: 0px 0px 15px 5px #335a95;
    box-shadow: 0px 0px 15px 5px #335a95;
    
}

#planetspinning {
background-image: url(https://astralforge.net/assets/ui/planetspinning.gif);
    position: relative;
    /* top: -5%; */
    /* right: -50%; */
    width: 100%;
    height: 25%;
    left: 0;
    right: 0;
    z-index: 1;
    background-position: center;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    background-size: contain;
}

#loginareainner {
	width: 80%; 
	height: 80%;
	margin: 5% 10%; 
	overflow-y: scroll;
}

#loginlogo {
background-image: url(https://astralforge.net/assets/ui/loginlogo.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 25%;
    height: 25%;
    margin-left: 37.5%;
    top: 0;
    z-index: 2;
    position: absolute;
}

label,input{
	float:left;
	margin: 3px 7px 3px 0px;
}

label,select{
	float:left;
	margin: 3px 7px 3px 0px;
}

label,input[type="submit"]{
	clear:left
}

label,textarea{
	float:left;
	margin: 3px 7px 3px 0px;
}


label {
	min-width:150px;
	width: auto; 
}

input[type=submit] {
	font-family: 'nasalizationregular';
    padding: 5px 7px;
    background-color: #335A95;
    color: #FFF;
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    border: 0px;
    -webkit-border-radius: 0;
    -webkit-text-size-adjust: 100%;
    border-radius: 0;
    -webkit-appearance: none;
	font-size: unset; 
}

select {
	font-family: 'nasalizationregular';
    padding: 0px 7px;
    background-color: #fff;

}

input[type=date] {

	background-color: #FFF;
		
}

input[type=date] {
	background-color: #FFF;
}

input[type=text] {
	font-family: 'nasalizationregular';
	padding: 0px 7px; 	
}

input[type=password] {
	font-family: 'nasalizationregular';
	padding: 0px 7px; 	
}

input[type=submit]:hover {
	cursor: pointer; 
}

textarea {
	min-width: 50%;
	height: 200px;
	float: left; 
	font-family: 'nasalizationregular';	
	padding: 3px 7px; 

}

.smalltext {
	font-size: 10px;
}

.newline {
	width: 100%; 
	line-height: 2em;
	float: left;
}

a {
	color: #335A95;
	text-decoration: none; 
}

.invalid {
	color: #FF0000;	
}

.success {
	text-shadow: -2px 2px 5px rgba(0,0,0,0.3);
	color: #64d32f;
	-webkit-animation: fade-out 1s ease-out 6s both;
	animation: fade-out 1s ease-out 6s both;	
}

@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}