a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,
dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,
html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,
strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;
  font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,
  section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,
  blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

* {
  margin: 0;
  padding: 0;
  color: inherit;
  box-sizing: inherit;
}
*:focus {
  outline: none;
}

html {
  box-sizing: border-box;
}

body {
  background-color: #ecf0f1;
  font-family: 'Open Sans', sans-serif;
  overflow: hidden;
}

h1, h2, h3, h4, h5 {
  font-weight: normal;
}

form {
  display: block;
}

label,
input {
  display: block;
}

.btn, .reg-content, .reg-content .reg-close, .reg-content .auth-form input {
  transition: all 0.3s;
}

.main-heading {
  line-height: 100%;
  font-weight: 600;
  font-size: 28px;
  text-transform: uppercase;
  text-align: center;
}

.btn {
  display: block;
  height: 50px;
  line-height: 50px;
  border: 0;
  text-align: center;
  cursor: pointer;
  border-radius: 5px;
}
.btn.btn-outline {
  background-color: transparent;
  border: 1px solid #fff;
}
.btn.btn-outline span {
  color: #fff;
}
.btn.btn-outline:hover {
  background-color: #fff;
}
.btn.btn-outline:hover span {
  color: #666;
}
/***************************************************************************/
.reg-background {
  background-color: rgba(44, 62, 80, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.reg-content {
  width: 100%;
  max-width: 530px;
  margin: 100px auto 0;
  padding: 0 15px;
  color: #fff;
  position: relative;
  z-index: 10;
}
.reg-content .reg-close {
  display: block;
  font-size: 35px;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 15px;
}
.reg-content .reg-close:hover {
  opacity: .8;
}
.reg-content .blurb {
  margin-top: 35px;
  line-height: 100%;
  font-weight: 600;
  font-size: 18px;
}
.reg-content .auth-form {
  margin-top: 35px;
}
.reg-content .auth-form label {
  line-height: 100%;
  margin-bottom: 5px;
  font-size: 14px;
}
.reg-content .auth-form input {
  background-color: transparent;
  width: 100%;
  height: 30px;
  margin-bottom: 20px;
  padding: 0 8px;
  border: 1px solid rgba(254, 254, 254, 0.3);
  border-radius: 5px;
}
.reg-content .auth-form input:hover, .reg-content .auth-form input:focus {
  border-color: #fff;
}
.reg-content .auth-form .submit-btn {
  width: 150px;
}

#switch_to_login{
  margin-left: 20px;
  font-size: 10px;
}

@media (max-width: 600px) {
  reg-content {
    margin: 25px auto;
  }
}
