/* Mirrored .section-left-side styles for .section-right-side on the sign-up page */
.sign-up .section-wrapper .section-right-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sign-up .section-wrapper .section-right-side h2,
.sign-up .section-wrapper .section-right-side h4 {
  font-weight: 700;
}
.sign-up .section-wrapper .section-right-side .fast-login-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sign-up .section-wrapper .section-right-side .fast-login-container .login-with-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.sign-up .section-wrapper .section-right-side .fast-login-container .login-with-container .login-with-item {
  padding: 1rem 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--greyColor4);
  border-radius: var(--smallRadius);
  cursor: pointer;
  width: 33.3333333333%;
  transition: all 0.3s ease-in-out;
  flex: 1;
  font-weight: bold;
  gap: 1rem;
}
.sign-up .section-wrapper .section-right-side .fast-login-container .login-with-container .login-with-item:hover {
  border-color: var(--primaryColor);
  transition: all 0.3s ease-in-out;
}
.sign-up .section-wrapper .section-right-side .fast-login-container .login-with-container .login-with-item img {
  width: 24px;
  height: 24px;
}
.sign-up .section-wrapper .section-right-side .divider {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sign-up .section-wrapper .section-right-side .divider .divider-item {
  height: 1px;
  width: 45%;
  background-color: var(--greyColor3);
}
.sign-up .section-wrapper .section-right-side .divider span {
  color: var(--greyColor3);
}
.sign-up .section-wrapper .section-right-side form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 500px;
  width: 100%;
}
.sign-up .section-wrapper .section-right-side form .platform-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sign-up .section-wrapper .section-right-side form .platform-container .radio-input-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sign-up .section-wrapper .section-right-side form .platform-container .radio-input-wrapper input[type=radio] {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.sign-up .section-wrapper .section-right-side form .platform-container .radio-input-wrapper label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid var(--greyColor4);
  border-radius: var(--smallRadius);
  background-color: var(--whiteColor);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.sign-up .section-wrapper .section-right-side form .platform-container .radio-input-wrapper label span {
  color: var(--primaryColor);
  transition: all 0.3s ease-in-out;
}
.sign-up .section-wrapper .section-right-side form .platform-container .radio-input-wrapper label img {
  width: 2.4rem;
  height: 2.4rem;
}
.sign-up .section-wrapper .section-right-side form .platform-container .radio-input-wrapper label i {
  font-size: 2.4rem;
}
.sign-up .section-wrapper .section-right-side form .platform-container .radio-input-wrapper input[type=radio]:checked ~ label {
  background-color: var(--primaryColor);
  transition: all 0.3s ease-in-out;
}
.sign-up .section-wrapper .section-right-side form .platform-container .radio-input-wrapper input[type=radio]:checked ~ label span {
  color: var(--whiteColor);
  transition: all 0.3s ease-in-out;
}
.sign-up .section-wrapper .section-right-side form .platform-container .radio-input-wrapper input#skype[type=radio]:checked ~ label span {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.sign-up .section-wrapper .section-right-side form .platform-container .radio-input-wrapper input#google[type=radio]:not(:checked) ~ label span {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.sign-up .section-wrapper .section-right-side form .indication-paragraph {
  color: var(--greyColor2);
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: -1rem;
}
.sign-up .section-wrapper .section-right-side form .conditions-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.sign-up .section-wrapper .section-right-side form .conditions-container .input-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sign-up .section-wrapper .section-right-side form .conditions-container .input-checkbox-wrapper input[type=checkbox]:checked {
  background-color: var(--primaryColor);
}
.sign-up .section-wrapper .section-right-side form button {
  margin: 0 auto;
  background-color: var(--secondaryColor);
  flex: 1;
  color: var(--secondaryColor);

}
@media screen and (max-width: 576px) {
  .sign-up .section-wrapper .section-right-side form button {
    width: 100%;
  }
}
.sign-up .section-wrapper .section-right-side form .link-to {
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
}
.sign-up .section-wrapper .section-right-side form .link-to a {
  font-size: 1.6rem;
}

html[data-theme="dark"] .sign-up .section-wrapper .section-right-side {
  color: var(--darkColor);
}
html[data-theme="dark"] .sign-up .section-wrapper .section-right-side h1,
html[data-theme="dark"] .sign-up .section-wrapper .section-right-side h2,
html[data-theme="dark"] .sign-up .section-wrapper .section-right-side h4,
html[data-theme="dark"] .sign-up .section-wrapper .section-right-side p,
html[data-theme="dark"] .sign-up .section-wrapper .section-right-side span,
html[data-theme="dark"] .sign-up .section-wrapper .section-right-side label,
html[data-theme="dark"] .sign-up .section-wrapper .section-right-side a {
  color: var(--darkColor);
}
html[data-theme="dark"] .sign-up .section-wrapper .section-right-side form .input-wrapper input {
  color: var(--darkColor);
  border-color: var(--whiteColor);
  background-color: var(--whiteColor);
}
html[data-theme="dark"] .sign-up .section-wrapper .section-right-side form .input-wrapper input::placeholder {
  color: var(--greyColor2);
}
html[data-theme="dark"] .sign-up .section-wrapper .section-right-side .fast-login-container .login-with-container .login-with-item {
  border-color: var(--whiteColor);
}
html[data-theme="dark"] .sign-up .section-wrapper .section-right-side .btn-secondary {
  background-color: var(--whiteColor) !important;
  border: 1px solid var(--whiteColor) !important;
  color: var(--darkColor) !important;
}

.sign-up .section-wrapper .section-left-side .img-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--secondaryColorLight);
            clip-path: polygon(37% 0, 100% 0, 100% 100%, 65% 100%, 68% 95%, 28% 91%, 50% 39%);
            z-index: -1;
        }

.sign-up  .section-wrapper .section-left-side .img-container img {
  max-width: 80%;
  margin: 0 auto;
  margin-bottom: 50px;
}
.sign-up .section-wrapper .section-right-side .fast-login-container .login-with-container .login-with-item {
  background-color: white;
}
.google-signup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(60, 66, 87, 0.08);
  padding: 16px 24px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 20px auto;
  transition: box-shadow 0.2s;
  gap: 12px;
}

.google-signup-btn img {
  width: 28px;
  height: 28px;
  margin-right: 12px;
}

.google-signup-btn:active,
.google-signup-btn:focus {
  outline: none;
  box-shadow: 0 4px 16px 0 rgba(60, 66, 87, 0.16);
}
