@font-face {
    font-family: QuickSand;
    src: url('../static/font/Quicksand-Regular.ttf')  format('truetype');
}

@font-face {
    font-family: QuickSandMedium;
    src: url('../static/font/Quicksand-Medium.ttf')  format('truetype');
}

@font-face {
    font-family: QuickSandBold;
    src: url('../static/font/Quicksand-Bold.ttf')  format('truetype');
}

html {
    width: 100%;
    height: 100%;
}

body {
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: #13181b;
}

h1 {
    color: white;
    font-size: 50pt;
    font-weight: normal;
    margin: 0px;
    margin-bottom: 15px;
    padding: 0px;
}

h2 {
    padding: 0px;
    margin: 0px;
    color: red;
    font-size: 70pt;
    font-weight: bold;
}

h3 {
    padding: 0px;
    margin: 0px;
    color: white;
    font-size: 20pt;
    font-weight: bold;
}

.bg {
    width: 100%;
    height: 100%;
    /* background: url('../static/images/planet.png'); */
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 25%;
    font-family: QuickSand;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: top;
    width: 36%;
    height: 50%;
    position: absolute;
    left: 32%;
    top: 25%;
    background: #263238;
    border-radius: 10px;
    padding:20px;
    /* -webkit-box-shadow: 10px 10px 5px 0px rgb(53, 66, 75);
    -moz-box-shadow: 10px 10px 5px 0px rgb(53, 66, 75);
    box-shadow: 10px 10px 5px 0px rgb(53, 66, 75); */
    opacity: 0.95;
    border: solid 1px rgb(74, 92, 104);
}

.title {
	padding: 10pt;
	margin-bottom: 40pt;
    font-family: QuickSandMerdium;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.button {
	background:#707b7c;
	color:black;
	font-size:16pt;
	padding:5pt;
	border:solid 1px #bfc9ca;
	border-radius:4px;
	margin:5pt;
	text-align:center;
	width:250px;
	cursor:pointer;
	text-decoration: none;
}

.button:hover {
	background:#bfc9ca;
	color:black;
	border:solid 1px white;
}

.input_field {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: white !important;
}

.box {
    position: fixed;
    top: 0;
    transform: rotate(80deg);
    left: 0;
    display: block;
}
  
.wave {
    position: fixed;
    top: 0;
    left: 0;
    opacity: .4;
    position: absolute;
    top: 3%;
    left: 10%;
    width: 100vw;
    height: 100vw;
    margin-left: -25vw;
    margin-top: -5vw;
    transform-origin: 50% 49%;
    border-radius: 43%;
    animation: drift 24000ms infinite linear;
    border: 2px solid red;
    background: transparent;
    /* filter: blur(3px); */
}

.wave.-two {
    animation: drift 30000ms infinite linear;
    opacity: .3;
    position: fixed;
    border: 4px solid red;
    background: transparent;
}

.wave.-three {
    animation: drift 14000ms infinite linear;
    position: fixed;
    opacity: .2;
    transform-origin: 48% 48%;
    border: 8px solid red;
    background: transparent;

}

.box:after {
    content: '';
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
    transform: translate3d(0, 0, 0);
}
  
@keyframes drift {
    from { transform: rotate(0deg); }
    from { transform: rotate(360deg); }
}

.logo-label{
	color:white;
	font-size: 12pt;
	padding: 0pt;
    font-family: QuickSandMerdium;
}

.powered-by-container {
    display:block;
    margin-top: 0px;
}