﻿
/* authentication/styles/base.scss */
html, body {
  padding: 0;
  margin: 0;
  background: #eef0f4;
  color: #0e0e0e;
  width: 100%;
  height: 100%;
}

/* authentication/styles/fonts.scss */
@font-face {
  font-family: 'Avenir Next Pro';
  src: url('https://static.cmcdn.net/kits/76/fonts/avenir/2B2E0A_1_0.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Avenir Next Pro';
  src: url('https://static.cmcdn.net/kits/76/fonts/avenir/2B2E0A_3_0.woff') format('woff');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Avenir Next Pro';
  src: url('https://static.cmcdn.net/kits/76/fonts/avenir/2B2E0A_0_0.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Avenir Next Pro';
  src: url('https://static.cmcdn.net/kits/76/fonts/avenir/2B2E0A_2_0.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Pano Bold';
  src: url('https://static.cmcdn.net/110/3.6.13/authentication/fonts/pano_bold.woff') format('woff');
  font-weight: 700;
  font-style: bold;
}

/* authentication/styles/variables.scss */


/* authentication/styles/typography.scss */
html {
  font: 10px "Avenir Next", "Avenir Next Pro", "Avenir";
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6, blockquote, cite, p {
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  padding: 0;
  margin: 0;
  font-size: 1em;
  word-wrap: break-word;
}

/* authentication/styles/forms.scss */
textarea, input, button, fieldset {
  -webkit-font-smoothing: antialiased;
  -webkit-appearance: none;
  appearance: none;
  border: none;
}
form {
  min-height: 240px;
}
:focus {
  outline: 0;
}
.forgot {
  position: absolute;
  right: 20px;
  top: 14px;
  color: #000;
  font-size: 16px;
}
.field {
  width: 370px;
  margin: auto;
  position: relative;
}
.field.valid .message {
  display: none;
}
.field > .input {
  font: 400 22px / 50px "Avenir Next", "Avenir Next Pro", "Avenir";
  color: #000;
  border: none;
  margin: 0 auto 1em;
  font-size: 20px;
  line-height: 2.5;
  letter-spacing: -0.05em;
  padding-left: 20px;
  height: 50px;
  width: 100%;
  border-bottom: 2px solid #f2f3f3;
  color: rgba(128, 130, 133, 1);
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}
.field .message:before {
  display: block;
  position: absolute;
  left: -6px;
  right: auto;
  top: 14px;
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 6px 6px 6px 0;
  border-color: transparent #f8ca5c transparent transparent;
}
.field .message {
  opacity: 0;
  visibility: hidden;
  display: block;
  position: absolute;
  right: auto;
  bottom: 26px;
  left: calc(100% + 4px);
  width: auto;
  height: auto;
  max-width: 310px;
  padding: 10px 15px;
  margin: 0px;
  font-size: 14px;
  line-height: 20px;
  height: 20px;
  font-weight: 500;
  background: #f8ca5c;
  color: #7d532b;
  border-radius: 3px;
  white-space: nowrap;
  z-index: 10;
  transition: margin-left 0.3s cubic-bezier(0, 0.005, 0.265, 1.8), opacity 0.1s ease;
}
.field .errorBlip {
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: 20px;
  right: 0.7em;
  text-align: center;
  background: center no-repeat url('https://static.cmcdn.net/110/3.6.13/images/form/18-sad.svg');
  background-size: 18px;
  border-radius: 100%;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: 100;
  pointer-events: none;
}
.field.invalid .message {
  display: block;
  opacity: 1;
  visibility: visible;
  margin-left: 6px;
}
.field.invalid input {
  border-bottom: 2px solid #ef6488;
}
.field.invalid .errorBlip {
  visibility: visible;
  opacity: 1;
}
.button {
  -webkit-appearance: none;
  display: inline-block;
  height: 70px;
  line-height: 70px;
  padding: 0 25px;
  color: white;
  font-weight: 500;
  font-size: 26px;
  text-decoration: none;
  border: none;
  border-radius: 35px;
  -webkit-font-smoothing: antialiased;
  cursor: pointer;
  background-clip: padding-box;
  background-color: #43c1be;
  transition: background-color 0.15s ease-in-out, width 0.2s ease-in-out;
}
.button:active {
  transform: scale(0.95);
}
.button:hover {
  background: #36d8d6;
}
.button:disabled {
  background: #dcdce9;
  pointer-events: none;
}
form.sending .button {
  width: 0px;
  min-width: 0px !important;
  padding: 0 35px;
  color: transparent;
  overflow: hidden;
  background: #43c1be center no-repeat url('https://static.cmcdn.net/110/3.6.13/authentication/images/bounce45C1BE-1x.gif');
  transition: width 0.2s ease-in-out;
  font-size: 0;
  cursor: default;
}
.field.invalid > .message {
  display: block;
  opacity: 1;
  visibility: visible;
}
.error > .message {
  display: none;
  padding: 0 0 20px;
  text-align: center;
  font-size: 18px;
  line-height: 20px;
  color: #ef6469;
}
form.error .error .message {
  display: block;
}

/* authentication/styles/button.scss */
.button {
  --height: 40px;
  cursor: pointer;
  border-radius: calc(var(--height) / 2);
  box-sizing: border-box;
  background: transparent;
  letter-spacing: 1px;
  height: var(--height);
  font: 12px / 40px "Avenir Next", "Avenir Next Pro", "Avenir";
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  border: none;
  padding: 0 20px;
}
.button:link {
  color: inherit;
  text-decoration: none;
}
.button.big {
  --height: 50px;
  line-height: 50px;
  font-size: 14px;
}
.button.small {
  --height: 30px;
  line-height: 29px;
  font-size: 10px;
}
.button.full {
  display: inline-block;
  width: 100%;
}
.button.outline:hover {
  background-color: #9874b8;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translate3d(0, -2px, 0);
}
.button.outline {
  border: 1px solid #9874b8;
  color: #9874b8;
  transition: box-shadow 0.25s cubic-bezier(0.02, 0.01, 0.47, 1), transform 0.25s cubic-bezier(0.02, 0.01, 0.47, 1), background-color 250ms ease-in-out, color 250ms ease-in-out;
}
.button.cancel:hover {
  color: #fff;
}
.button.cancel {
  cursor: pointer;
  color: #535456;
  font-weight: 500;
  letter-spacing: 0.2em;
  transition: color 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}
.button.solid:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translate3d(0, -2px, 0);
}
.button.solid {
  font-family: "Helvetica Neue", Helvetica, Arial;
  background-color: #9974ba;
  color: #fff;
  letter-spacing: 0.2em;
  transition: box-shadow 0.25s cubic-bezier(0.02, 0.01, 0.47, 1), transform 0.25s cubic-bezier(0.02, 0.01, 0.47, 1), background-color 250ms ease-in-out, color 250ms ease-in-out;
}
.button.solid.white {
  background-color: #fff;
  color: #000;
}
.button.solid:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.button.big.solid {
  display: inline-block;
  min-width: 175px;
}
.button.big.back .icon {
  left: 0;
  top: 9px;
}
.button.big.back {
  color: #69737F;
  padding: 0 30px;
}

/* authentication/styles/google-signin.scss */
.google-signin {
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.05em;
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 25px;
  width: 300px;
  margin: auto;
  height: 50px;
  text-decoration: none;
  color: #000;
  font-weight: 400;
}
.google-signin:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translate3d(0, -1px, 0);
}
.google-signin img {
  width: 36px;
  height: 30px;
  margin-right: 20px;
}
.or-div {
  font-size: 14px;
  margin-bottom: 30px;
  margin-top: 20px;
}
#dualForm {
  display: none;
}
#dualForm.show {
  display: block;
}
#c3Form {
  display: none;
}
#c3Form.show {
  display: block;
}
.c3-link {
  margin-top: 20px;
  font-size: 14px;
  padding-left: 10px;
}

/* authentication/styles/core.scss */
section.signin {
  display: flex;
  flex-flow: row;
  width: 100%;
  height: 100vh;
  position: relative;
}
section.signin .sentGuts {
  display: none;
}
section.signin.sent .requestGuts {
  display: none;
}
section.signin.sent .sentGuts {
  display: block;
}
section.signin .logo {
  width: 177px;
  height: 36px;
  -webkit-mask-image: url('https://static.cmcdn.net/110/3.6.13/images/logo.svg');
  mask-image: url('https://static.cmcdn.net/110/3.6.13/images/logo.svg');
  -webkit-mask-size: cover;
  mask-size: cover;
  background: #000;
  margin: 0 auto 10px;
}
section.signin h1 {
  font: 65px "Pano Bold";
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 600px;
  margin: 0 auto 0.4em;
}
section.signin h2 {
  font: 40px / 1.1 "Avenir Next", "Avenir Next Pro", "Avenir";
  font-weight: normal;
  max-width: 600px;
  margin: 0 auto 1.25em;
}
section.signin .lhs {
  width: 60%;
  flex-basis: 60%;
  text-align: center;
  flex: 1;
  display: flex;
  flex-flow: column;
  text-align: center;
  justify-content: center;
}
section.signin .rhs {
  width: 40%;
  flex-basis: 40%;
  background: #9974ba center bottom no-repeat url('https://static.cmcdn.net/110/3.6.13/authentication/images/bg-login.svg');
  background-size: contain;
}
section.signin form .button.solid {
  font: 14px "Helvetica Neue", Helvetica, Arial;
  letter-spacing: 0.2em;
  min-width: 225px;
  border-radius: 25px;
}
section.signin form .button {
  line-height: 50px;
  height: 50px;
  margin-top: 1.2em;
}
section.signin form.valid .button {
  opacity: 1;
}
section.signin form {
  min-height: 225px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  section.signin {
    display: block;
  }
  section.signin .lhs .logo {
    margin: 30px auto;
    width: 145px;
    height: 28px;
  }
  section.signin .lhs h1 {
    font-size: 10vw;
    margin-bottom: 0.6em;
  }
  section.signin .lhs h2 {
    font-size: 30px;
  }
  section.signin .lhs form .message:before {
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
  section.signin .lhs form .message {
    transition: bottom 0.3s cubic-bezier(0, 0.005, 0.265, 1.8), opacity 0.1s ease;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
  }
  section.signin .lhs form .field .input {
    box-sizing: border-box;
  }
  section.signin .lhs form .field.invalid .message {
    margin-left: 0;
    bottom: -26px;
  }
  section.signin .lhs form .field {
    width: 100%;
  }
  section.signin .lhs form {
    min-height: 240px;
  }
  section.signin .lhs .button {
    margin-top: 2.4em;
  }
  section.signin .lhs {
    width: 100%;
    padding: 0 20px;
  }
  section.signin .rhs {
    width: calc(100% + 40px);
    height: 265px;
  }
}