:root {
  --btn-gray: #f0f0ee;
  --btn-white: #ffffff;
  --accent: #fdd835;
  --accent-hover: #fadf45;
  --text-dark: #171717;
}

body {
  font-family: "Helvetica Neue", "Open sans", sans-serif;
  background: gray linear-gradient(to bottom, #FE6666 0%, #E22A6F 100%) fixed;
  color: white;
}

.logo {
  width: 500px;
}
.logo .container {
  background: black;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  margin: auto;
}
.logo .container-eyes {
  margin: auto;
  text-align: center;
  padding-top: 36px;
}
.logo .eye {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  margin: -1px;
  background: #CCC;
}
.logo .eye:after {
  /*pupil*/
  position: absolute;
  bottom: 17px;
  right: 10px;
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  content: " ";
}
.logo .poco-title {
  text-align: center;
  font-weight: 600;
  font-size: 60px;
  font-family: Montserrat, serif;
  padding-top: 30px;
}
.logo .poco-subtitle {
  text-align: center;
  font-weight: 300;
  font-size: 30px;
  font-family: Montserrat_Light, serif;
  color: #fff;
}

.form-group {
  position: fixed;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.poco-form input {
  display: block;
  color: #000;
  outline: none;
  font-weight: 400;
  border: 1px solid #e2e2e2;
  border-radius: 2px;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  box-sizing: border-box;
  padding: 20px;
  background: #eeeeee;
  margin: 20px auto auto;
  transition: border 500ms ease-in-out;
  width: 100%;
}

input .input-field {
  border: 1px solid black;
}

.poco-form input:hover, .poco-form input:focus {
  border: 1px solid #cacaca;
}

.poco-form input::placeholder {
  color: #AAAAAA;
  margin-left: 10px;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 1px;
  text-align: left;
}

input[type=submit] {
  margin: 40px auto;
  border: 1px solid white;
  display: block;
  width: 100px;
}

input[type=submit]:hover {
  border: 1px solid white;
  display: block;
  width: 100px;
}

.form-group p {
  margin-top: 10px;
  text-align: right;
}

.form-group p a {
  color: #e1e1e1;
}

.poco-form-main, .poco-form-login, .poco-form-register {
  position: absolute;
  width: 100%;
  height: 50vh;
}
.poco-form-main .footer-message, .poco-form-login .footer-message, .poco-form-register .footer-message {
  display: flex;
  position: absolute;
  bottom: -40px;
  width: 100%;
  margin-left: 10px;
}
.poco-form-main .footer-message.only, .poco-form-login .footer-message.only, .poco-form-register .footer-message.only {
  margin-left: 0;
}
.poco-form-main .footer-message.only .footer-button, .poco-form-login .footer-message.only .footer-button, .poco-form-register .footer-message.only .footer-button {
  text-align: center;
  width: 100%;
  color: #fff;
}
.poco-form-main .footer-message .footer-button, .poco-form-login .footer-message .footer-button, .poco-form-register .footer-message .footer-button {
  font-family: Montserrat, serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  letter-spacing: 2px;
  text-align: left;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.poco-form-main .footer-message .footer-button.bold, .poco-form-login .footer-message .footer-button.bold, .poco-form-register .footer-message .footer-button.bold {
  font-size: 16px;
}
.poco-form-main .footer-message .footer-button.active, .poco-form-login .footer-message .footer-button.active, .poco-form-register .footer-message .footer-button.active {
  color: #fff;
  cursor: pointer;
}
.poco-form-main .footer-message span, .poco-form-login .footer-message span, .poco-form-register .footer-message span {
  text-decoration: underline;
  margin-left: 40px;
}

.poco-form-main {
  transition: left 500ms ease-in-out;
  left: 0;
}
.poco-form-main.login {
  left: 150vw;
}
.poco-form-main.register {
  left: -150vw;
}

.poco-form-login {
  transition: left 500ms ease-in-out;
  left: -150vw;
  width: 100%;
}
.poco-form-login.login {
  left: 0;
}
.poco-form-login.register {
  left: -300vw;
}

.poco-form-register {
  transition: left 500ms ease-in-out;
  left: 150vw;
  width: 100%;
}
.poco-form-register.login {
  left: 300vw;
}
.poco-form-register.register {
  left: 0;
}
.poco-form-register .poco-registration-text {
  color: black;
  text-align: center;
  font-family: Montserrat;
}

.poco-form-login .poco-form-title, .poco-form-register .poco-form-title {
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 1px;
  text-align: center;
  color: var(--text-dark);
  padding-top: 40px;
  padding-bottom: 20px;
}
.poco-form-login .poco-form, .poco-form-register .poco-form {
  padding-left: 40px;
  padding-right: 40px;
  background: #fff;
  padding-bottom: 40px;
}

.poco-button {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 400;
  background: var(--btn-white);
  color: #E7356D;
  text-align: center;
  line-height: 40px;
  padding: 10px 0;
  letter-spacing: 1.5px;
  font-size: 16px;
  box-shadow: 0 20px 20px 0 #00000026;
}
.poco-button.pink {
  color: #fff;
  background: linear-gradient(45deg, #E22A6F 45%, #FE6666 100%), linear-gradient(0deg, #222222, #222222);
}

p.error-text {
  text-align: center;
  color: #e32929;
  height: 0;
  overflow: hidden;
  transition: height 300ms ease-in-out, opaciy 500ms ease-in-out;
  opaciy: 0;
}
p.error-text.shown {
  height: 30px;
  opaciy: 1;
}

.snackbar-container {
  z-index: 99999;
  position: fixed;
  bottom: 0;
  right: 0;
}
.snackbar-container.left {
  right: unset;
  left: 0;
}
.snackbar-container.left .snackbar {
  margin-right: auto;
  margin-left: 40px;
}
@media screen and (max-width: 800px) {
  .snackbar-container {
    bottom: 56px;
  }
}
.snackbar-container .snackbar {
  margin-right: calc(10vw - 100px);
  margin-bottom: 24px;
  padding: 16px 48px 16px 16px;
  background: #000;
  border-radius: 4px;
  width: 260px;
  position: relative;
  box-shadow: 0 1px 16px #0003;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  animation: showSnackbar 200ms ease-out forwards;
}
.snackbar-container .snackbar span {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1px;
  float: right;
  color: var(--accent);
  padding: 2px;
  cursor: pointer;
}
.snackbar-container .snackbar.snackbar-badge {
  padding-right: 38px;
  width: 280px;
}
.snackbar-container .snackbar.snackbar-badge .snackbar-display {
  display: block;
  width: 100%;
}
.snackbar-container .snackbar.snackbar-badge .snackbar-display .badge-image {
  display: inline-block;
  height: 50px;
  width: 50px;
  border-radius: 100px;
}
.snackbar-container .snackbar.snackbar-badge .snackbar-display .badge-text {
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
  margin-left: 4px;
  width: calc(100% - 60px);
}
.snackbar-container .snackbar.snackbar-badge .snackbar-display .badge-text .title {
  font-size: 18px;
  font-weight: 500;
}
.snackbar-container .snackbar.dismissed {
  animation: dismissSnackbar 200ms ease-in forwards;
}
@keyframes showSnackbar {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: scaleY(1) translateY(0);
  }
}
@keyframes dismissSnackbar {
  0% {
    opacity: 1;
    transform: scaleY(1) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}
@media screen and (max-width: 800px) {
  .snackbar-container .snackbar {
    margin-right: 24px;
    width: calc(100vw - 128px);
  }
}
.snackbar-container .snackbar .snackbar-exit {
  position: absolute;
  top: 14px;
  right: 12px;
  width: 24px;
  cursor: pointer;
}

/*# sourceMappingURL=public.css.map */
