/**
 * Returns value from colors map
 */
/**
 * Turns pixels to rems
 * We typically set out HTML font size to 62.5% which helps us have a base-10 value to work with.
 * So the following mixin accepts a pixel value that is then turned into a corresponding rem value.
 */
/**
 * Function for converting a px based font-size to rem.
 *
 * @param $size - the value in pixel you want to convert
 *
 * e.g. p {to-rem(12);}
 *
 */
/**
 * Returns value from colors map
 */
/**
 * Turns pixels to rems
 * We typically set out HTML font size to 62.5% which helps us have a base-10 value to work with.
 * So the following mixin accepts a pixel value that is then turned into a corresponding rem value.
 */
/**
 * Function for converting a px based font-size to rem.
 *
 * @param $size - the value in pixel you want to convert
 *
 * e.g. p {to-rem(12);}
 *
 */
.node--type--login-cta .login-container {
  background: #f2f2f2;
  border-radius: 1.2rem;
  padding: 4rem;
  -webkit-transition: -webkit-box-shadow 0.5s ease;
  transition: -webkit-box-shadow 0.5s ease;
  -o-transition: box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease, -webkit-box-shadow 0.5s ease;
}
.node--type--login-cta .login-container:hover {
  -webkit-box-shadow: 0 0 1.5rem rgba(100, 100, 100, 0.25);
  box-shadow: 0 0 1.5rem rgba(100, 100, 100, 0.25);
}
.node--type--login-cta .login-container .login-title {
  font-size: 2.6rem;
  line-height: 1.15 !important;
}
.node--type--login-cta .login-container .login-cta a {
  text-align: center;
  border-radius: 2.5rem;
  padding: 1.2rem 2.4rem;
  background-color: #fd7512;
  background: -webkit-gradient(linear, left top, right top, from(#fd7512), to(#e04a11));
  background: -o-linear-gradient(left, #fd7512 0%, #e04a11);
  background: linear-gradient(90deg, #fd7512 0%, #e04a11);
  color: white;
}
.node--type--login-cta .login-container .login-cta a:hover {
  text-decoration: none;
  background: -o-linear-gradient(229deg, #c63e01 0%, #8b1b06);
  background: linear-gradient(221deg, #c63e01 0%, #8b1b06);
}
@media only screen and (max-width: 959px) {
  .node--type--login-cta .login-container .login-cta a {
    display: block;
  }
}