body, html {
  background-image: url("../img/pavement_b_512_hell.jpg");
  background-attachment: fixed;
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

.logo-login {
  max-width: 230px;
}

.s-head-center {
  text-align: center;
  border-top: medium solid #A1347A;
  border-bottom: thin solid #A1347A;
}

/* Add styles to the form container */
.container {
/*
  position: absolute;
  right: 0;
  margin: 20px;
  margin: 0 auto 0 auto;

  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
*/
  
  position: relative;
  top: 10px;
  left: 50%;
  transform: translate(-50%);
  
  max-width: 300px;
  padding: 16px;
  background-color: white;
}

/* Full-width input fields */
input[type=text], input[type=password] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 18px 0;
  border: none;
  background: #f1f1f1;
}

input[type=password] {
  margin: 5px 0 10px 0;
}

input[type=text]:focus, input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}

.help {
  height: 10px;
  font-size: 8pt;
  text-align: left;
}

/* Set a style for the submit button */
.btn-container {
  width: 100%;
  padding-top: 5px;
  color: white;
  background-color: none;
}

.btn-icon {
  float: left;
  background-color: #A1347A;
  text-align: center;
  padding-top: 6px;
  width: 15%;
  height: 38px;
}

.btn {
  background-color: #A1347A;
  font-size: 14pt;
  font-weight: bold;
  text-align: left;
  width: 85%;
  height: 38px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
}

.btn:hover {
/*
  color: black;
  stroke: black;
*/
  opacity: 1;
  padding: 10px 25px;
}

