/* Login page specific styles */


.login .section-wrapper .section-right-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.login .section-wrapper .section-right-side .img-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login .section-wrapper .section-right-side .img-container img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--largeRadius);
}

/* Right side specific styles */
.login .section-wrapper .section-right-side form .conditions-container .input-checkbox-wrapper input[type=checkbox]:checked {
  background-color: var(--primaryColor);
}

.login .section-wrapper .section-right-side form .conditions-container a {
  font-size: 1.6rem;
}

.login .section-wrapper .section-right-side form button {
  margin: 0 auto;
  width: 290px;
}

.login .section-wrapper .section-right-side form .link-to {
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
}

.login .section-wrapper .section-right-side form .link-to a {
  font-size: 1.6rem;
}

@media screen and (max-width: 576px) {
  .login .section-wrapper .section-right-side form button {
    width: 100%;
  }
}

/* Fix for the syntax errors in app.css */
.login .section-wrapper .section-right-side .fast-login-container .login-with-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.login .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;
}

/* Background highlight color utility */
.background-highLightColor {
  background-color: var(--highlightBackgroundColor);
  padding: 1.5rem;
  border-radius: var(--mediumRadius);
}

/* --- Mirrored .section-left-side styles for .section-right-side --- */
.login .section-wrapper .section-right-side h2,
.login .section-wrapper .section-right-side h4 {
  font-weight: 700;
}
.login .section-wrapper .section-right-side .fast-login-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.login .section-wrapper .section-right-side .fast-login-container .login-with-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.login .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;
}
.login .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;
}
.login .section-wrapper .section-right-side .fast-login-container .login-with-container .login-with-item img {
  width: 24px;
  height: 24px;
}
.login .section-wrapper .section-right-side .divider {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.login .section-wrapper .section-right-side .divider .divider-item {
  height: 1px;
  width: 45%;
  background-color: var(--greyColor3);
}
.login .section-wrapper .section-right-side .divider span {
  color: var(--greyColor3);
}
.login .section-wrapper .section-right-side form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 500px;
  width: 100%;
}
.login .section-wrapper .section-right-side form .input-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .login .section-wrapper .section-right-side form .input-wrapper {
    max-width: 100%;
  }
}
.login .section-wrapper .section-right-side form .input-wrapper label {
  color: var(--primaryColor);
  font-size: 1.6rem;
  font-weight: 400;
}
.login .section-wrapper .section-right-side form .input-wrapper input {
  width: 100%;
  background-color: var(--primaryColorLight);
  color: var(--primaryColor);
  font-size: 1.4rem;
  font-weight: 400;
  height: 4rem;
  border-radius: var(--smallRadius);
  border: 1px solid transparent;
  outline: none;
  padding: 1rem 2rem;
  transition: all 0.3s ease-in-out;
}
.login .section-wrapper .section-right-side form .input-wrapper input.valid {
  border-color: var(--successColor);
  color: var(--successColor);
}
.login .section-wrapper .section-right-side form .input-wrapper input.invalid {
  border-color: var(--dangerColor);
  color: var(--dangerColor);
}
.login .section-wrapper .section-right-side form .platform-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.login .section-wrapper .section-right-side form .platform-container .radio-input-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.login .section-wrapper .section-right-side form .platform-container .radio-input-wrapper input[type=radio] {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.login .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;
}
.login .section-wrapper .section-right-side form .platform-container .radio-input-wrapper label span {
  color: var(--primaryColor);
  transition: all 0.3s ease-in-out;
}
.login .section-wrapper .section-right-side form .platform-container .radio-input-wrapper label img {
  width: 2.4rem;
  height: 2.4rem;
}
.login .section-wrapper .section-right-side form .platform-container .radio-input-wrapper label i {
  font-size: 2.4rem;
}
.login .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;
}
.login .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;
}
.login .section-wrapper .section-right-side form .platform-container .radio-input-wrapper input#skype[type=radio]:checked ~ label span {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.login .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;
}
.login .section-wrapper .section-right-side form .indication-paragraph {
  color: var(--greyColor2);
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: -1rem;
}
.login .section-wrapper .section-right-side form .conditions-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}
.login .section-wrapper .section-right-side form .conditions-container .input-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.login .section-wrapper .section-right-side form .conditions-container .input-checkbox-wrapper input[type=checkbox]:checked {
  background-color: var(--primaryColor);
}
.login .section-wrapper .section-right-side form .conditions-container a {
  font-size: 1.6rem;
}
.login .section-wrapper .section-right-side form button {
  margin: 0 auto;
  width: 290px;
}
@media screen and (max-width: 576px) {
  .login .section-wrapper .section-right-side form button {
    width: 100%;
  }
}
.login .section-wrapper .section-right-side form .link-to {
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
}
.login .section-wrapper .section-right-side form .link-to a {
  font-size: 1.6rem;
}

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

.login .section-wrapper .section-left-side .fast-login-container .login-with-container, .login .section-wrapper .section-right-side .fast-login-container .login-with-container{
  background-color: white;
}

.login .section-wrapper .section-left-side .img-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--highlightBackgroundColor);
            clip-path: polygon(100% 0, 100% 50%, 100% 100%, 18% 100%, 43% 51%, 20% 0);
            z-index: -1;
        }

