.sign-in-wrapper {
  display: flex;
  flex-direction: row;
  background-color: var(--white);
  width: 100%;
  min-height: 100%;
  height: 100vh;
  align-items: stretch;
}

.dark .sign-in-wrapper {
  background-color: var(--dark-grey);
}

.sign-in-wrapper .left-side {
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  box-sizing: border-box;
  position: relative;
  padding: 20px 16px 32px 16px;
}

.mobile .sign-in-wrapper .left-side {
  padding: 0 16px;
  width: 100%;
}

.dark .sign-in-wrapper .left-side {
  background-color: var(--dark-grey);
}

.sign-in-wrapper .right-side {
  background-color: var(--blue);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 143px 20px;
  position: relative;
  width: 55%;
  overflow: hidden;
}

.dark .sign-in-wrapper .right-side {
  background-color: var(--dark-black);
}

.sign-in-wrapper .logo {
  display: block;
  height: 32px;
}

.sign-in-wrapper .logo-white {
  display: none;
}

.dark .sign-in-wrapper .logo-white {
  display: block;
}

.sign-in-wrapper.dark .logo-color {
  display: none;
}

.mobile .sign-in-wrapper .logo-wrapper {
  height: 32px;
  width: 100%;
  padding: 19px 0;
  box-sizing: content-box;
}

.sign-in-wrapper h1 {
  margin: 0;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  font-family: Poppins, Helvetica, Roboto;
  display: block;
  margin-bottom: 58px;
}

.mobile .sign-in-wrapper h1 {
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 24px;
}

.sign-in-wrapper .left-side {
  align-items: flex-start;
}

.sign-in-wrapper .left-side .content {
  width: 368px;
  height: 100%;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}

.mobile .sign-in-wrapper .left-side .content {
  width: 100%;
  height: 100vh;
}

.input-wrapper {
  margin-bottom: 16px;
}

.input-wrapper input {
  margin-bottom: 30px;
}

.input-wrapper label,
.form-styled label {
  font-weight: 400;
  display: inline-block;
  font-size: 14px;
  font-family: Roboto;
  color: var(--grey-800);
  line-height: 20px;
  margin-bottom: 4px;
}

.dark .input-wrapper label,
.dark .form-styled label {
  color: var(--white);
}

.input-wrapper input:not([type="submit"]),
.form-styled input {
  height: 48px;
  width: 100%;
  font-family: Roboto;
  border-style: solid;
  border-width: 1px;
  border-color: var(--grey-400);
  border-radius: 4px;
  padding: 5px 15px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4375em;
}

.input-wrapper input.verify {
  width: 200px;
}

.dark .input-wrapper input,
.dark .form-styled input {
  background-color: transparent;
}

.sign-in-wrapper .buttons-wrapper,
.form-styled .buttons-wrapper {
  margin-top: 32px;
  margin-bottom: 40px;
  gap: 16px;
}

.sign-in-wrapper .button {
  cursor: pointer;
  gap: 8px;
}

.mobile .sign-in-wrapper .button {
  justify-content: center;
  width: 100%;
}

.to-signUp {
  font-style: normal;
  font-family: Roboto;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--grey-800);
  gap: 5px;
}

.to-signUp a {
  color: var(--blue-light);
}

.to-signUp a:hover {
  text-decoration: underline;
}

.copyrights {
  line-height: 20px;
  font-size: 14px;
  width: 368px;
  padding-bottom: 30px;
  text-align: left;
}

.sign-in-wrapper .right-side {
  position: relative;
}

.sign-in-wrapper .right-side .sprite {
  width: 870px;
  height: 877px;
  position: absolute;
  right: -170px;
  bottom: -17%;
}


@media screen and (min-width: 900px) {
  .sign-in-wrapper .left-side {
    padding: 20px 80px 34px 90px;
    width: 52%;
  }

  .copyrights {
    left: 90px;
  }

  .sign-in-wrapper .right-side {
    display: flex;
  }
}


@media screen and (min-width: 1200px) {
  .sign-in-wrapper .left-side {
    padding: 20px 112px 34px 139px;
  }

  .copyrights {
    left: 139px;
  }
}


/* Стили для разделителя "OR" */
.separator-or {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 32px 0 32px 0; /* Отступы сверху и снизу */
}

.separator-or hr {
  flex-grow: 1;
  border: none;
  border-top: 1px solid var(--grey-400); /* Цвет линии */
  margin: 0 8px; /* Отступ от слова OR */
}

.dark .separator-or hr {
  border-top: 1px solid var(--grey-800); /* Более темный цвет в темной теме */
}

.separator-or span {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--grey-600); /* Цвет текста OR */
}

.dark .separator-or span {
  color: var(--grey-400);
}

/* Обновите или добавьте стили для новых контейнеров кнопок */
.social-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sign-in-wrapper .login-button-wrapper,
.sign-in-wrapper .social-buttons-wrapper {
    display: flex;
    flex-direction: column !important;
    gap: 16px;
}

.sign-in-wrapper .buttons-wrapper .button,
.sign-in-wrapper .buttons-wrapper input[type="submit"] {
    width: 100%;
    justify-content: center;
}
