
html {
  height: 100%;
}
body {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
  margin: 0px;
  padding: 0px;
  background: #202020;
}
#terminal {
  display: block;
  position: fixed;
  top: 62px;
  bottom: 0%;
  width: 100%;
}

#connection-panel {
  display: block;
  position: fixed;
  height: 60px;
  background: transparent;
}

#clientConnectButton {
/*  position:fixed; */
  vertical-align: center;
  align-self:right;
  background-color: #365041;
  border: none;
  border-radius: 8px;
  width: 120px;
  margin: 15px;
  height: 30px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  left: 15px;
  top: 30px;
  cursor: pointer;
}

/* Inputs */
input[type=text], input[type=password] {
  vertical-align: center;
  width: 200px;
  height: 30px;
  padding: 12px 20px;
  left: 15px;
  top: 15px;
  color: grey;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
}

label {
	cursor: pointer;
	color: white;
	/*display: block;*/
	padding: 10px;
	margin: 3px;
}

.errorMsg {
    display:none;        
    color:Red;
}
