/* Application styles */

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-box-sizing: border-box;
}

html {
  font-family: Tahoma, Arial, sans-serif;
  color: white;
  background: #000;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.container {
  position: relative;
  z-index: 2;

  text-align: center;
  width: 100%;
  height: 100%;
  vertical-align: middle;

  display: flex;
  justify-content: center;
  align-items: center;
}


.card-wrapper {
  width: 100%;
  width: expression(document.body.clientWidth > 722 ? "722px" : "85%");
  padding: 36px;
}

.card {
  text-align: left;
  display: inline-block;
  max-width: 550px;
  width: 100%;

  border: 1px solid #323232;
  border-radius: 16px;
  -moz-border-radius: 16px;
  
  background-color: rgba(128, 128, 128, 0.08);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#19808080', endColorstr='#19808080');
}

.card-header {
  margin: 30px 30px 0;
}

.card-header h1 {
  margin: 0;

  color: white;

  font-weight: 600;
  line-height: 100%;
  
  background-image: url("/assets/elipse-c639dd30.png");
  background-repeat: no-repeat;
  background-position: left;
  
  padding-left: 24px;
}

.card-header p {
  font-size: 14px;
  margin: 10px 0 0 24px;
  color: lightgrey;
}

.img-container {
  text-align: center;
}

.img-container img {
  /* max-width: 292px; */
  width: auto;
}

.card-body {
  margin: 24px 30px 30px;
}

p {
  margin: 0;
  font-size: 18px;
}

small {
  color: white;
  font-size: 14px;
}

small a {
  color: #ef6000;
}

small a:hover {
  color: #e05200;
}

.text-center {
  text-align: center;
}

.m-0 {
  margin: 0;
}

.mt-1 {
  margin-top: 4px;
}

.mt-2 {
  margin-top: 8px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mt-3 {
  margin-top: 16px;
}