::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: white;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: white;
}


canvas {
    background-color: #fffa76;
    border: 1px solid #000;
    border-radius: 7px;
}



body {
    background-color: #0a0a3faa;
}

button {
    border: none;
    border-radius: 30px;
    background-color:steelblue;
    box-shadow: 1px 10px 10px 1px #00009999;
    color:white;
    font-weight: bold;
}

button:hover {
    border: none;
    border-radius: 30px;
    background-color:steelblue;
    box-shadow: 1px 10px 10px 1px #000099dd;
}





input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-transition: border-color 0.2s ease-in-out;
    -webkit-transition: border-color 0.2s ease-in-out;
    -ms-transition: border-color 0.2s ease-in-out;
    transition: border-color 0.2s ease-in-out;
    background: transparent;
    border-radius: 10px;
    border: solid 1px rgba(255, 255, 255, 0.3);
    color:inherit;
    /* display: block; */
    outline: 0;
    padding: 0 1em;
    text-decoration: none;
    
    
}




/* FLASH */
.alert {
	position: relative;
	top: 10;
	left: 0;
	width: auto;
	height: auto;
	padding: 10px;
	margin: 10px;
	line-height: 1.8;
	border-radius: 5px;
	cursor: hand;
	cursor: pointer;
	font-family: sans-serif;
	font-weight: 400;
  }
  
  .alertCheckbox {
	display: none;
  }
  
  :checked + .alert {
	display: none;
  }
  
  .alertText {
	display: table;
	margin: 0 auto;
	text-align: center;
	font-size: 16px;
  }
  
  .alertClose {
	float: right;
	padding-top: 5px;
	font-size: 10px;
  }
  
  .clear {
	clear: both;
  }
  
  .info {
	background-color: #282a3b; 
	border: 2px solid #570a46;
	color: #dddddd;
  }
  
  .success {
	background-color: #282a3b;
	border: 2px solid #226522;
	color: #dddddd;
  }
  
  .notice {
	background-color: #282a3b;
	border: 2px solid #666666;
	color: #dddddd;
  }
  
  .warning {
	background-color: #282a3b;
	border: 2px solid #807812;
	color: #dddddd;
  }
  
  .error {
	background-color: #282a3b;
	border: 2px solid #a00d0d;
	color: #dddddd;
  }
/* END FLASH */