body {
  position: relative;
  background-color: #F3F4FD;
  color: #312F3D;
  background-repeat: repeat;
  background-size: 10px 10px;
  background-position: center center;
}
.signup-section {
  z-index: 1;
}
.signup-form {
  text-align: center;
  max-width: 460px;
  padding-bottom: 40px;
}
.signup-section .logo {
  background-image: url(/images/logo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  height: 50px;
  width: 170px;
  margin: 40px 0;
}
.signup-form .form-ctn {
  padding: 40px;
  border-radius: 3px;
  background-color: #ffffff;
}
.animated-panel.ng-enter {
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease;
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}
.animated-panel.ng-enter.ng-enter-active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .signup-section .logo {
    margin: 20px 0;
    width: 140px;
  }
}
@media screen and (max-width: 400px) {

  .section {
    padding: 0 10px;
  }
  .signup-form .form-ctn {
    padding: 30px 15px 30px 15px;
  }
}

/* Verify form */
.verify-form {
  max-width: 600px;
}
.verify-form .form-ctn {
  font-size: 13px;
  line-height: 1.54;
  text-align: left;
  color: #727272;
  padding: 40px 50px 50px 50px;
}
.verify-form .form-ctn .bold {
  font-weight: bold;
}
.verify-form .form-ctn .link {
  color: #d6253c;
  cursor: pointer;
}
.verify-form .link:hover {
  text-decoration: underline;
}
@media screen and (max-width: 400px) {
  .verify-form .form-ctn {
    padding: 30px 30px 40px 30px;
  }
}
.verify-form .new-email-sent-ctn {
  margin-top: 20px;
  text-align: center;
}
.verify-form .new-email-sent-ctn.hidden {
  display: none;
}
.new-email-sent {
  color: white;
  font-weight: bold;
  background: #519871;
  display: inline-block;
  vertical-align: top;
  padding: 0 10px;
  height: 30px;
  line-height: 30px;
  border-radius: 3px;
}
.new-email-sent.invalid {
  background: #ff7f7f;
}
.new-email-sent-ctn .disclaimer {
  margin-top: 5px;
}
.reg-dropdown {
  display: block;
}
.or-ext {
  font-size: 16px;
  color: #ffffff;
  font-weight: bold;
  margin: 20px 0;
}
.ext-link {
  display: block;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.03);
  border: 1px solid #eceff1;
  background-color: #ffffff;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, filter 0.3s ease;
  transition: background-color 0.3s ease, filter 0.3s ease;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  height: 50px;
  filter: grayscale(100%);
}
.ext-link:hover {
  background-color: #ececec;
  filter: none;
}
.ext-link.shopify {
  background-image: url(/images/static/signin/shopify.png);
}
