/***************************/
button.trigger-popup {
  display: block;
  margin: 20px auto;
  background: crimson;
  color: white;
  border: 0;
  padding: 6px 10px;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
}

.popup-wrapper {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  display: block;
}

.popup {
  font-family: arial;
  text-align: center;
  width: 100%;
  max-width: 380px;
  margin: 10% auto;
  padding: 20px;
  background: white;
  position: relative;
  border-radius: 5px;
  border: 1px outset #ccc;
  -webkit-box-shadow: inset 1px 2px 2px #aaa, inset -1px -2px 2px #777, 1px 2px 1px black;
  -moz-box-shadow: inset 1px 3px 2px #bbb, inset -1px -1px 3px #888, 1px 2px 1px black;
  box-shadow: inset 1px 2px 2px #ccc, inset -1px -1px 3px #999, 1px 2px 1px black;
  text-shadow: 1px 1px 1px #777;
}

/*.popup a {
  background: crimson;
  color: white;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 5px;
}
*/
.popup-close {
  position: absolute;
  right: 15px;
  top: 5px;
  width: 20px;
  height: 20px;
  opacity: 0.5;
  color: #f00;
  cursor: pointer;
}

.popup-close:hover {
  opacity: 1;
  color: #800;
  cursor: pointer;
}

.popup-close:before,
.popup-close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 20px;
  width: 2px;
  background-color: #333;
}

.popup-close:before {
  transform: rotate(45deg);
}

.popup-close:after {
  transform: rotate(-45deg);
}

* {
	font-family: sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}
label, .label {
	display: inline-block;
	width: 150px;
	text-align: left;
}
.label_half,  {
  display: inline-block;
  width: 70px;
  text-align: left;
}
.remember {
  font-size: 0.75rem;
}

input[type="text"],
input[type="password"] {
	width: 200px;
	margin: 0.25rem;
}
input[type="submit"],
input[type="button"] {
  width:100px;
}
main {
	font-family:  sans-serif;
	width:  400px;
	margin: 0 auto;
	text-align: center;

}
a.user {
	font-size: 0.75rem;
}
h1 {
	font-family: sans-serif;
	font-size: 1.5rem;
}