* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  background: url('../images/bg.jpg') no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
body {
  font-family: 'Open Sans';
  font-size: 16px;
  margin: 0;
  padding: 0;
}
.register-box {
  max-width: 480px;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  overflow: hidden;
  padding: 40px 20px;
}
.register-box-bg {
  background-color: #ffffff;
  opacity: 0.9;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.rb-content {
  position: relative;
  z-index: 10;
}
.gold-h2 {
  font-weight: 700;
  color: #af9a51;
  text-align: center;
  font-size: 30px;
}
.gold-h2 em {
  font-style: italic;
  font-weight: 600;
  font-size: 27px;
}
h1 {
  color: #aa0661;
  line-height: 1.2;
  text-align: center;
  margin-top: 7px;
  letter-spacing: -1px;
}
h1 span {
  display: block;
}
.line-1, .line-3 {
  font-size: 27px;
}
.line-2 {
  font-size: 39px;
  font-style: italic;
}
.line-3 {
  padding-top: 5px;
}
.register-box p {
  text-align: center;
  color: #7d7d7d;
  font-size: 16px;
  font-family: 'Droid Serif';
  line-height: 1.6;
  padding: 0 5px;
}
.toggle-modal {
  background-color: #aa0661;
  color: #ffffff;
  border-radius: 5px;
  padding: 15px 0;
  display: block;
  width: 100%;
  max-width: 70%;
  margin: 40px auto 0 auto;
  text-align: center;
  font-size: 20px;
}
.toggle-modal strong {
  display: block;
}
.toggle-modal:hover, .toggle-modal:focus, .toggle-modal:active, .toggle-modal:target {
  opacity: 0.9;
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
.modal-header {
  border: none;
  padding-bottom: 0;
}
.optin-form {
  padding: 10px;
}
.optin-form label {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  color: #000000;
}
.optin-form input[type="text"] {
  padding: 10px;
  border: 1px solid #dddddd;
  border-radius: 5px;
  width: 100%;
  display: block;
  margin-bottom: 20px;
}
.optin-form input[type="submit"] {
  background-color: #aa0661;
  color: #ffffff;
  border-radius: 5px;
  padding: 15px 0;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 20px;
  border: none;
  margin-top: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.optin-form input[type="submit"]:hover {
  opacity: 0.9;
}
.close {
  margin-right: 10px;
}
.optin-form label.jp-is-invalid {
  color: red;
  margin-top: -20px;
  font-size: 14px;
}
@media (max-width: 1000px) {
  .register-box {
    left: 40%;
  }
}
@media (max-width: 880px) {
  .register-box {
    max-width: 420px;
  }
}
@media (max-width: 700px) {
  .register-box {
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
}
@media (max-width: 430px) {
  .register-box {
    width: 100%;
    max-width: 100%;
  }
  .line-2 {
    font-size: 32px;
  }
}
@media (max-width: 360px) {
  .line-2 {
    font-size: 27px;
  }
  .gold-h2 {
    font-size: 22px;
  }
}