@font-face {
    font-family: 'Nunito';
    src: url('NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf');
}

body {
	background-color: #091d31;;
	font-family: 'Nunito';
	color: #091d31;
}

#astronaut {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 200px;
	animation: float 3s ease-in-out infinite;
}

#logo {
	width: 300px;
	margin: 10px;
	margin-bottom: 40px;
}

#container {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	position: relative;
}

#loginform {
	background-color: white;
	border-radius: 20px;
	width: 500px;
	padding: 40px;
	margin: auto;
	text-align: center;
}

#loginform h1 {
	font-size: 40px;
	margin-bottom: 50px;
	font-weight: bold;
}

#login {
	display: block;
	text-align: left;
}

#login label {
	font-size: 20px;
	color: #091d31;
}

#login input {
	display: block;
	width: 100%;
	font-size: 18px;
	border: 1px solid grey;
	border-radius: 5px;
	margin-bottom: 30px;
	padding: 10px;
	color: #d52383;
}

#submit {
	width: 100%;
	font-size: 20px;
	background-color: #d52383;
	border: 0;
	border-radius: 5px;
	color: white;
	padding: 13px;
	font-weight: bold;
}

#submit:hover {
	background-color: #971a5d;
}

#loginoutput {
	font-size: 16px;
	font-weight: bold;
	color: red;
}

#forgot {
	color: #d52383;
}

#forgot p {
	margin-bottom: 70px;
}

#copyright {
	color: grey;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
}

#connectionlog {
	width: 90%;
	height: 100%;
	background-color: white;
	border-radius: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
}

#buttons button {
	width: 100px;
}

table {
	width: 100%;
	text-align: center;
	margin-bottom: 50px;
}

th {
	text-align: center;
}

tr:nth-child(even) {
	background-color: #f2f2f2;
}

.btn {
	height: 40px;
	border-radius: 5px;
}

#simlog button {
	margin: 5px;
}

/* RESPONSIVE */
@media screen and (max-width: 700px) {
	#loginform {
		width: 90%;
		padding: 30px;
	}
	
	#astronaut {
		display: none;
	}
}

/* ANIMATIONS */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }