#registration {
  max-width: 1200px;
  margin: auto;
}

#google-register {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  border: 1px solid #000;
  color: #000;
  transition: 0.55s;
  text-decoration: none;
  border-radius: 16px;
  font-size: 16px;
  font-weight: bold;
}

#registration-header {
  font-size: 28px;
  letter-spacing: 0.07em;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 40px;
}

#google-register svg {
  margin-right: 16px;
  width: 24px;
  height: auto;
}

#google-register:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}

#registration-flow-wrapper {
  margin-top: 45px;
  margin-bottom: 60px;
}

#registration-flow {
  display: flex;
  align-items: center;
}

.one-registration-step {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.one-registration-step span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid #c4c3d1;
  border-radius: 30px;
  margin-right: 14px;
}

.one-registration-step.active {
  color: #302a2d;
  font-weight: 600;
  border-color: #302a2d;
}

.one-registration-step.active span {
  background: #985bee;
  border-color: #985bee;
  color: #fff;
}

.one-registration-delimiter {
  width: 60px;
  height: 2px;
  background: #c4c3d1;
  margin-left: 22px;
  margin-right: 22px;
}

#form-message {
  color: #f33;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
}

.delimiter-line {
  text-align: center;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 32px;
}

.delimiter-line span {
  display: inline-block;
  padding: 0 18px;
  position: relative;
}

.delimiter-line span:before,
.delimiter-line span:after {
  position: absolute;
  top: 50%;
  content: "";
  height: 1px;
  background: #bbbac6;
  width: 100vw;
}

.delimiter-line span:before {
  right: 100%;
}

.delimiter-line span:after {
  left: 100%;
}

.one-form-block {
  margin-bottom: 16px;
}

.one-form-block label {
  font-size: 16px;
  margin-bottom: 8px;
}

.one-form-block input {
  width: 100%;
  border: 1px solid #000;
  border-radius: 8px;
  background: none;
  height: 40px;
  padding: 0 20px;
}

#registration-form,
#forgot-password-form,
#reset-password-form {
  margin-bottom: 32px;
}

#registration-form button,
#reset-password-form button,
#forgot-password-form button {
  height: 48px;
  transition: 0.55s;
  background: #985bee;
  border-radius: 8px;
  display: block;
  width: 100%;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  margin-top: 32px;
  transition: 0.55s;
  border: 0;
}

#registration-form button:hover,
#forgot-password-form button:hover,
#reset-password-form button:hover {
  background: #000;
  color: #fff;
}

.already-at-proclaimer {
  text-align: center;
  font-size: 16px;
}

#registration p {
  font-size: 16px;
}

.already-at-proclaimer a,
.pro-link {
  color: #985bee;
  transition: 0.55s;
  text-decoration: none;
}

.already-at-proclaimer a:hover,
.pro-link:hover {
  color: #000;
}

@media all and (max-width: 1024px) {
  #proclaimer-logo-wrapper {
    margin-bottom: 20px;
  }
}

@media all and (min-width: 1025px) {
  #registration-flow-wrapper {
    display: flex;
    align-items: center;
  }

  #registration-flow-wrapper > * {
    width: 33.3%;
    flex: 33.3%;
    min-width: 33.3%;
    max-width: 33.3%;
  }
}

.pro-text-center {
  text-align: center;
}

#proclaimer-settings {
  padding-top: 40px;
  padding-left: 80px;
  padding-bottom: 80px;
}

@media (max-width:1024px) {
  #proclaimer-settings {
    padding-left: 20px;
    padding-right: 20px;
  }
}

#proclaimer-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#proclaimer-settings {
  max-width: 1000px;
  padding-right: 30px;
}

.proclaimer-split-row {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
}

.proclaimer-split-row > div {
  padding-left: 15px;
  padding-right: 15px;
  width: 50%;
  flex: 50%;
  min-width: 50%;
  max-width: 50%;
}

@media all and (min-width: 1025px) {
  .proclaimer-split-row {
    margin-left: -32px;
    margin-right: -32px;
  }

  .proclaimer-split-row > div {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width:768px) {
  .proclaimer-split-row {
    flex-wrap: wrap;
    width:100%;
  }
  .proclaimer-split-row > div{
    width:100%;
    flex:100%;
    min-width:100%;
    max-width:100%;
  }
}


#proclaimer-settings-inner h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
}

.proclaimer-choose-widget {
  max-width: 500px;
  font-size: 16px;
  margin-bottom: 32px;
  margin-top: 0;
}

.input-wrapper {
  position: relative;
}

.input-wrapper input {
  outline: 0 !important;
}

@keyframes pulseBorder {
  0% {
    border-color: #c4c3d1;
  }

  50% {
    border-color: #985bee;
  }

  100% {
    border-color: #c4c3d1;
  }
}

.input-wrapper input.copied {
  /*pulse animation*/
  animation: pulseBorder 0.5s infinite;
}

.input-wrapper a {
  position: absolute;
  top: 50%;
  outline: 0 !important;
  border: 0 !important;
  right: 16px;
  transform: translateY(-50%);
}

.input-wrapper a svg path {
  transition: 0.55s;
}

.input-wrapper a:hover svg path {
  fill: #000;
}

.input-wrapper a svg {
  width: 24px;
  height: auto;
}

.input-wrapper input,
.input-wrapper input:focus {
  width: 100%;
  height: 40px;
  background: #f5f4f5;
  border-radius: 4px;
  border: 1px solid #c4c3d1;
  box-shadow: none !important;
}

.proclaimer-split-row label {
  margin-bottom: 8px;
  display: block;
  font-size: 16px;
}

.proclaimer-split-row {
  margin-bottom: 32px;
}

.proclaimer-settings-bottom {
  margin-top: 100px;
}

.proclaimer-settings-bottom h2 {
  margin-bottom: 32px;
}

.proclaimer-button {
  padding: 13px 48px;
  background: #985bee;
  color: #fff;
  border: 0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  transition: 0.55s;
  width: 100%;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.proclaimer-settings-bottom a {
  width: auto;
}

.proclaimer-button:hover {
  background: #000;
  color: #fff;
}

.proclaimer-empty-button {
  color: #985bee;
  border: 2px solid #985bee;
  background: none;
}

.proclaimer-empty-button:hover {
  color: #fff;
  background: #985bee;
}

#registration.plan-selection {
  margin-left: 0;
}

.purple-color {
  color: #985bee;
}

#proclaimer-plan-selection {
  text-align: left;
}

#proclaimer-plan-selection h2 {
  font-size: 28px;
}

.proclaimer-the-plan {
  width: 100%;
  max-width: 530px;
  padding: 15px 32px 32px 32px;
  background: #fff;
  border: 1px solid #c4c3d1;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
}

.proclaimer-the-plan.purple-border {
  border: 2px solid #985bee;
}

.proclaimer-the-plan > div:nth-child(1) {
  width: calc(100% - 90px);
  flex: calc(100% - 90px);
  min-width: calc(100% - 90px);
  max-width: calc(100% - 90px);
}

.proclaimer-the-plan > div:nth-child(2) {
  width: 70px;
  min-width: 70px;
  max-width: 70px;
  margin-left: 20px;
}

.proclaimer-the-plan > div:nth-child(3) {
  width: 100%;
  flex: 100%;
  min-width: 100%;
  max-width: 100%;
  margin-top: 24px;
}

#registration .proclaimer-plan-price {
  margin-bottom: 2px;
  font-size: 40px;
  font-weight: 700;
  margin-top: 10px;
}

#registration .proclaimer-plan-price span {
  font-size: 16px;
  font-weight: 400;
  color: #848199;
}

.proclaimer-plan-value {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
}

.proclaimer-plan-value svg {
  margin-right: 8px;
  width: 24px;
  min-width: 24px;
  max-width: 24px;
  height: auto;
}

#registration .proclaimer-plan-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  margin-top: 0;
}

#registration .proclaimer-plan-lets-talk {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 24px;
  margin-top: 0;
}

#registration * {
  box-sizing: border-box;
}

#proclaimer-tos-content {
  padding: 20px;
  background: #fff;
  margin-bottom: 30px;
}

#proclaimer-accept-button-wrapper {
  margin-top: 30px;
}

#proclaimer-accept-button-wrapper a {
  width: auto;
}

#proclaimer-forgot-password-link {
  text-align: right;
}

#proclaimer-forgot-password-link a {
  color: #302a2d;
  font-size: 12px;
  text-decoration: underline;
}

#proclaimer-forgot-password-link a:hover {
  color: #985bee;
  text-decoration: underline;
}

.forgot-password-form,
.reset-password-form {
  margin-top: 32px;
}

#proclaimer-last-content-message,
#proclaimer-short-content-message {
  display: flex;
  font-size: 10px;
  line-height: 1.2;
  margin-top: 8px;
  margin-bottom: 8px;
}

#proclaimer-last-content-message svg,
#proclaimer-short-content-message svg {
  width: 8px;
  height: auto;
  min-width: 8px;
  margin-right: 8px;
}

#proclaimer-short-content-message {
  color: #dc8523;
}

#proclaimer-short-content-message a {
  color: #dc8523;
  text-decoration: underline;
}

#proclaimer-short-content-message a:hover {
  color: #000;
  text-decoration: underline;
}

#proclaimer-short-content-message svg {
  color: #dc8523;
}

#proclaimer-open-settings {
  margin-top: 24px;
}

#proclaimer-open-settings a {
  text-decoration: underline;
}

#registration .proclaimer-plan-price.bigger-ideas {
  font-size: 24px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 8px;
}

@media all and (min-width: 1024px) {
  .plan-selection-row {
    display: flex;
    align-items: flex-start;
  }

  .plan-selection-row > div:nth-child(1) {
    margin-right: 16px;
  }
}

#registration .proclaimer-plan-value {
  margin-top: 0;
  margin-bottom: 9px;
}

#proclaimer-short-content-message.subscription-not-valid {
  display: none;
}

#proclaimer-validation-result-span {
  color: #21759b;
}
