html
{
	height: 100%;
}

body
{
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

/**************************/
/*        Header          */
/**************************/

header
{
	overflow: hidden;
  	top: 0;
  	min-height: 15%;
  	height: 15%;
}

#header_container
{
	background: black;
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: grid;
}

#div_logo
{
	height: 100%;
	min-width: 10%;
	display: flex;
}

#logo
{
	color: #ffffff;
	text-decoration: none;
	font-size: 30px;
	outline: 0;
	margin: auto auto;
	/*	text-transform: uppercase;*/
}

.highlight
{
	color: green;
	font-weight: bold;
	font-size: 32px;
}

#navigation
{
	margin: auto auto;
	width: 100%;
}

#navigation nav
{
	text-align: center;
}

#navigation nav a
{
	color: #000000;
	background-color: #ffffff;
	text-decoration: none;
	border: 0;
	margin: 0;
	padding-left: 5px;
	padding-right: 5px;
}

#spacer-top
{
	min-height: 5%;
}

#spacer-bottom
{
	min-height: 5%;
}

/**************************/
/*        Main            */
/**************************/

main
{
	min-height: 60%;
	display: flex;
	max-width: 95%;
	margin: auto;
}

#div_index
{
	min-width: 10%;
	display: grid;
}

#div_index a
{
	color: #ffffff;
	background-color: green;
	text-decoration: none;
	padding: 5px;
}

.forms_container
{
	padding: 20px;
	min-width: 30%;
	margin: auto;
	overflow: hidden;
	text-align: center;
	background-color: #000000;
	color: #ffffff;

}

.forms_container a
{
	color: #ffffff;
	text-decoration: none;
}

#form_1
{
	width: 100%;
	height: 100%;
	margin: auto;
	overflow: hidden;
	
}

#form_1 div
{
	padding-top: 1%;
	padding-bottom: 1%;
}

#form_1 input, #form_1 textarea
{
	width: 95%;
	padding: 2%;
}

#form_1 button
{
	margin: 5%;
}

#password_recovery
{
	color: #000000;
	background-color: #ffffff;
	text-decoration: none;
	border: 0;
	margin: 0;
	padding-left: 5px;
	padding-right: 5px;
}

table
{
	margin: 2%;
}

/**************************/
/*     Control Panel      */
/**************************/

#control_panel_div
{
/*	display: grid;*/
	width: 60vh;
	margin: auto auto;
	background: #eee;
}

#control_panel_div center
{
	margin: 5%;
}

.control_panel_info
{
	margin:5%;
}

.control_panel_input
{
	margin:5%;
}

.control_panel_submit
{
	margin:5%;
}

#control_panel_buttom
{
/*	width: 70%;*/
	margin: auto;
	max-width: 20vh;
	margin:2% auto;
	text-align:center; 
	background: #cccccc;
	border: 1px solid black;
	cursor: pointer;
}

select
{
	background: #cccccc;
	padding:2%;
}

#virtual_machine_command_box
{
	overflow-x:auto;overflow-y:hidden;
	border: 1px solid black;
}

#virtual_machine_command_box_answer
{
	border: 1px solid black;
}


.loader_blue
{
	margin: 10%;
	border: 6px solid #e6e6e6;     /* Light grey */
	border-top: 6px solid #1f4fd8; /* Blue */
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
}

.loader_green
{
	margin: 10%;
	border: 6px solid #e6e6e6;     /* Light grey */
	border-top: 6px solid #2ecc71; /* Green */
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
}

@keyframes spin
{
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-gpu
{
	display: inline-block;
	background-color: green;
	color: white;
	font-weight: bold;
	font-size: 1.2em;
	padding: 14px 32px;
	border-radius: 8px;
	text-decoration: none;
	transition: 0.2s ease-in-out;
}

.cta-gpu:hover
{
	background-color: #0a7a0a;
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.cta-gpu:focus,
.cta-gpu:focus-visible
{
	outline: 3px solid rgba(0,128,0,0.35);
	outline-offset: 3px;
	background-color: #0a7a0a;
	box-shadow: 0 0 0 4px rgba(0,128,0,0.15);
}

/**************************/
/*        Footer	          */
/**************************/

footer
{
	margin: 0;
	overflow: hidden;
	background-color: black;
	text-align: center;
  	bottom: 0;
  	min-height: 15%;
  	height: 15%;
  	display: flex;
}

footer a
{
	color: #ffffff;
	text-decoration: none;
	border: 0;
	margin: 0;
	padding-left: 5px;
	padding-right: 5px;
	text-transform: uppercase;
}

footer p
{
	margin-bottom: 0;
}

footer a:hover
{
	color: #cccccc;
}

