.auth-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--y-space-30) 0;
  margin-bottom: 0;
}
.auth-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.auth-section .container.right-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--y-space-32);
}
.auth-section .container.right-left .right {
  width: 100%;
}
.auth-section .container.right-left .left {
  width: 100%;
}

.auth-section .container .right {
  width: 50%;
  display: grid;
  place-items: center;
}
.auth-section .container .right h2 {
  width: 100%;
  padding-right: var(--y-space-44);
  padding-bottom: 0;
  font-weight: 600;
}
.auth-section .container .left {
  width: 50%;
  display: grid;
  place-items: center;
}
.auth-section .container .right p {
  font-size: var(--y-space-32);
  font-weight: 700;
  text-align: justify;
}
.auth-section .container .left img {
  height: 573px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--y-space-30);
}
.auth-section form {
  display: flex;
  flex-direction: column;
  gap: var(--y-space-32);
  padding: var(--y-space-28) var(--y-space-42);
  width: 100%;
  background: #fcfcfc;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  border-radius: var(--y-space-30);
}
.auth-section form .form-group {
  display: flex;
  flex-direction: column;
  gap: var(--y-space-8);
}
.auth-section form .form-group input, .auth-section form .form-group select , .auth-section form .form-group textarea{
  width: 100%;
  padding: var(--y-space-12) var(--y-space-12);
  border: 1px solid #0000004d;
  border-radius: var(--y-space-8);
}
.auth-section form .form-group input:focus, .auth-section form .form-group select:focus, .auth-section form .form-group textarea:focus {
  border-color: var(--y-color-primary);
  box-shadow: 0 0 0 3px
    color-mix(in oklab, var(--y-color-primary) 20%, transparent);
  outline: none;
}
.auth-section form .form-group input:disabled {
  background-color: var(--y-color-border);
  cursor: not-allowed;
}
.auth-section form .form-group input:read-only {
  background-color: var(--y-color-border);
  cursor: not-allowed;
}
.auth-section form > button {
  width: 100%;
  padding: var(--y-space-12) var(--y-space-12);
  border-radius: var(--y-space-8);
  background-color: var(--y-color-primary);
  color: var(--y-color-text);
  cursor: pointer;
  transition: all 0.5s ease;
  font-weight: 700;
}

.auth-section form > button:hover {
  transform: scale(1.05);
  background-color: var(--y-color-secondary);
  color: var(--y-color-bg);
  box-shadow: -6px 6px 13px 0px var(--y-color-primary-contrast);
}

.auth-section form .auth-switch {
  width: 100%;
  text-align: center !important;
  font-weight: 700;
  color: #000;   font-size: var(--y-space-16) !important;
}
.auth-section form .auth-switch a {
  color: var(--y-color-secondary);
  text-decoration: none;
  font-weight: 700;

}
.auth-section form .auth-switch a:hover {
  color: var(--y-color-secondary);
}

.auth-section form .auth-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--y-space-12);
  width: 100%;
}
.auth-section form .auth-remember {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--y-space-8);
  font-weight: 700;
}

/* Custom checkbox */
/*change*/
.auth-section form .auth-remember input[type="checkbox"] {
  width: 18px;
  height: 18px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--y-color-border);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  background-color: #fff;
}
.auth-section form .auth-remember input[type="checkbox"]:checked {
  background-color: var(--y-color-primary);
  border-color: var(--y-color-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
}
/*end ofchange*/
.auth-section form .auth-note {
  font-size: var(--y-space-16) !important;
  line-height: var(--y-line-normal);
  font-weight: 500 !important;
  color: #000;
}
.auth-section form .auth-actions .auth-forgot {
  font-weight: 700;
  color: #000;
  text-decoration: none;
}
.auth-section form .auth-actions .auth-forgot:hover {
  color: var(--y-color-secondary);
}

.auth-section form .form-group label {
  font-weight: 700;
}

@media (max-width: 768px) {
  .auth-section .container {
    flex-direction: column-reverse;
    gap: var(--y-space-44);
  }
  .auth-section .container .right {
    width: 100%;
  }
  .auth-section .container .left {
    width: 100%;
  }
  .auth-section .container .right p {
    font-size: var(--y-space-24);
  }
  .auth-section .container .left img {
    height: 300px;
  }
  .auth-section .container .right h2 {
    padding-right: 0;
    padding-bottom: var(--y-space-24);
  }
  .auth-section .container.right-left {
    grid-template-columns: 1fr;
  }
}


.password-group {
  position: relative;
}

.password-input-wrapper {
  position: relative;
  align-items: center;
}

.password-input-wrapper input {
  padding-right: var(--y-space-48);
}

.password-toggle {
  position: absolute;
  right: var(--y-space-16);
  top: 27px;
  right: auto;
  left: 0;
  transform: translateY(-50%);
  width: fit-content;
  height: fit-content;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: var(--y-space-8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--y-space-18);
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: var(--y-color-primary);
}
