body > .tso-auth-overlay {
  background: #000000 none repeat scroll 0 0;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0.5;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  z-index: 998;
}

body > .tso-auth-modal {
  background-color: #fafafa;    
  position: fixed;
  left: 0;    
  top: 10%;
  right: 0;
  width: 55%;
  max-height: 70%;
  margin: auto;
  padding: 0;
  border-radius: 2px;
  overflow-y: auto;
  box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
  -webkit-box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
  z-index: 999;
}

body > .tso-auth-modal > div {
  padding: 20px 20px 10px;
}

body > .tso-auth-modal > div h4 {
  font-size: 1.5em;
  font-weight: 400;
  margin: 0 0 0.5em;
}

body > .tso-auth-modal > div .tso-auth-controls {
  float: right;
}

body > .tso-auth-modal > div .tso-auth-controls > a {    
  background-color: rgba(0, 0, 0, 0);
  position: relative;  
  color: #343434;
  height: 36px;
  margin: 6px 0;
  padding: 0 2em;
  line-height: 36px;
  border: medium none;
  border-radius: 2px;
  -moz-user-select: none;
  cursor: pointer;
  outline: 0 none;
  text-transform: uppercase;
  overflow: hidden;  
  display: inline-block;
  transition: all 0.3s ease-out 0s;
  vertical-align: middle;
  will-change: opacity, transform;
  z-index: 1;
}

body > .tso-auth-modal > div .tso-auth-controls > a + a {
  margin-left: 10px;
}

body > .tso-auth-modal > div .tso-auth-controls > a:hover {
  background-color: rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

body > .tso-auth-modal div.end {
  clear: both;
}

@media (max-width: 1020px) {
  body > .tso-auth-modal {
    width: 75%;
  }
}

@media (max-width: 800px) {
  body > .tso-auth-modal {
    width: 90%;
  }  
}

@media (max-width: 485px) {
  body > .tso-auth-modal > div .tso-auth-controls > a + a {
    margin-left: 0;
  }
}