@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Poppins';
  color: #0D2941;
}
a, a:hover {
  text-decoration: none;
  color: inherit;
}
input {
  padding: 0;
  border: none;
  font-family: inherit;
  background: none;
}
input:focus, button:focus, span:focus {
  outline: none;
}
input:focus::placeholder {
  color: rgba(255,255,255,0);
}
input:focus::-moz-focus-inner {
  border: none;
}
/* Prevent Apple zoom anti-feature */
input[type="email"],
input[type="tel"],
input[type="text"] {
  font-size: 16px;
}
button {
  border: none;
}
#container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background-color: #0D2941; */
  background:
    radial-gradient(circle at 0 0, rgba(234,124,127,.5), rgba(234,124,127,0) 150px),
    radial-gradient(circle at 100% 0, rgba(234,124,127,.5), rgba(234,124,127,0) 150px),
    #0D2941;
}
#logo-container {
  flex: 0 0 auto;
  margin-top: 20px;
}
#cards-container {
  width: 100%;
  flex: 1 1 30%;
  display: flex;
  justify-content: center;
  align-items: start;
  overflow: hidden;
}
#cards-image {
  display: block;
  height: 205px;
  width: 200px;
}
#content-container {
  width: 100%;
  flex: 1 1 55%;
}
#content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FFF;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 25px 20px;
}
#header {
  width: 100%
}
#title {
  font-size: 25px;
  font-weight: 500;
}
#subtitle {
  font-size: 13px;
  color:#727272;
}
.second {
  display: none;
}
#content.second .first {
  display: none;
}
#content.second .second {
  display: unset;
}
.plugin-form {
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}
.plugin-form.login {
  row-gap: 25px;
}
#content.second .plugin-form {
  display: none;
}
#input-container {
  height: 50px;
  display: block;
  width: 100%;
  border-radius: 30px;
  background-color: #F4F4F4;
  padding-left: 50px;
  position: relative;
  transition: box-shadow 0.2s ease;
}
#input-container.invalid {
  box-shadow: 0 0 0 1px #f44, 0 0 3px 1px #f44;
}
#input-container.invalid #input-message {
  opacity: 1;
}
#input-container:focus-within {
  box-shadow: 0 0 0 1px rgba(15,44,68, .6), 0 0 3px 1px rgba(15,44,68, .6);
}
#input-message {
  color: #f44;
  position: absolute;
  left: 21px;
  top: calc(100% + 3px);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
#mail-icon {
  width: 28px;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}
#email {
  height: 100%;
  width: 100%;
}
#checkbox-container {
  width: 100%;
  margin: 15px 0;
}
.btn, .btn:hover {
  color: #FFF;
}
.btn, .btn:hover {
  width: 100%;
  height: 50px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 30px;
  background-color: #EF7C7F;
  padding: 0;
  cursor: pointer
}
.form-btn:focus {
  box-shadow: 0 0 0 1px rgba(15,44,68, .6), 0 0 3px 1px rgba(15,44,68, .6);
}
#success {
  padding: 35px 0;
  display: none;
}
#content.second #success {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 271px;
}
#message {
  font-weight: 500;
}
#user-email {
  color: #EF7C7F;
}
a.btn {
  text-align: center;
  line-height: 50px;
}
#footer {
  color: #727272;
  font-size: 12px;
}
@media only screen and (min-width: 640px) {
  #container {
    position: relative;
    flex-direction: row;
    background: none;
  }
  #logo-container {
    position: absolute;
    right: 0;
    top: 0;
    margin-right: 20px;
  }
  #cards-container {
    height: 100%;
    order: 2;
    flex-basis: 50%;
    align-items: center;
    background: no-repeat center/cover url("../assets/waves.png");
  }
  #content-container {
    height: 100%;
    order: 1;
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #content {
    width: 80%;
    max-width: 400px;
    height: unset;
    border-radius: 0;
  }
}
/* Checkbox style */
#checkbox-wrapper * {
  box-sizing: border-box;
}
#checkbox-wrapper .cbx {
  width: 100%;
  font-size: 12px;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
  display: inline-flex;
}
#checkbox-wrapper .cbx span {
  float: left;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}
/* #checkbox-wrapper .cbx span:first-child { */
#checkbox-svg {
  position: relative;
  flex: 0 0 18px;
  /* width: 18px; */
  height: 18px;
  border-radius: 4px;
  transform: scale(1);
  border: 1px solid #cccfdb;
  transition: all 0.2s ease;
  box-shadow: 0 1px 1px rgba(0,16,75,0.05);
}
#checkbox-container.invalid #checkbox-svg {
  box-shadow: 0 0 0 1px #f44, 0 0 3px 1px #f44;
}
#checkbox-svg:focus {
  box-shadow: 0 0 0 1px rgba(15,44,68, .6), 0 0 3px 1px rgba(15,44,68, .6)
}
#checkbox-svg svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}
#checkbox-wrapper .cbx span:last-child {
  padding-left: 8px;
  line-height: 18px;
  color: #727272;
}
#checkbox-wrapper .inp-cbx {
  position: absolute;
  visibility: hidden;
}
#checkbox-wrapper .inp-cbx:checked + .cbx span:first-child {
  background: #EF7C7F;
  border-color: #EF7C7F;
  animation: wave-4 0.4s ease;
}
#checkbox-wrapper .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}
#inline-svg {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  user-select: none;
}
@media only screen and (max-width: 640px) {
  #checkbox-wrapper .cbx {
    width: 100%;
    /* display: inline-block; */
  }
}
@media only screen and (min-height: 700px) {
  #content {
    padding: 30px 20px 40px;
  }
  .plugin-form {
    padding: 30px 0;
    row-gap: 10px;
  }
  #cards-image {
    width: unset;
    height: unset;
  }
}
@-moz-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}
@-webkit-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}
@-o-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}
@keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}
/* End checkbox style */
