BODY {
	font-family: verdana;
	font-size: 12pt;
	margin: 0px;
	background-image: url('background.jpg');
	background-size: cover;
	background-position:center;
	background-repeat:no-repeat;
	height: 100vh;
}

DIV.opened
{
	position: absolute;
	top: 50%;
	
	
}

DIV.closed DIV
{
	position: relative;
	top: 100px;
}

DIV.opened, DIV.closed DIV {
	width: 800px;
	color:#000;
	box-sizing: border-box;
	background-color: rgba(255, 255, 255, 0.9); /* white with 80% opacity */
	border: 1px solid black;
	border-radius: 5px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.4); /* faint red glow */
	transform: translate(-50%, -50%);
	padding: 20px 30px;
	left: 50%;
}

DIV.closed {
	width: 850px;
	color: #FFF;
	background-color: rgba(255, 255, 255, 0.3); /* white with 80% opacity */
	border: 2px solid white;
	border-radius: 5px;
	box-shadow: 0 0 50px rgba(255, 255, 255, 0.4); /* faint red glow */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 0px 30px 20px 30px;
}

DIV.error {
	width: 600px;
	color: #FFF;
	background-color: rgba(255, 255, 255, 0.3); /* white with 80% opacity */
	border: 2px solid red;
	border-radius: 5px;
	box-shadow: 0 0 50px rgba(255, 0, 0, 0.4); /* faint red glow */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 20px 30px;
}

TEXTAREA
{
	width:100%;
	height:200px;
	box-sizing: border-box;
	padding: 10px 15px;
	font-size:12pt;
	
	
}

button {
  background-color: #0AF; 
  color: white;
  padding: 12px 50px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
}

button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

button:active {
  background-color: #004085;
  transform: translateY(0);
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}