main.login-page {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-wrapper {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  max-width: 365px;
  width: 100%;
  margin: 0 auto;
}

.title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 21px;
  text-align: center;
}

.login-logo {
  width: 111px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-dark {
  display: none;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login_eyes {
  border: 0;
  background: transparent;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-group .login-btn {
  color: #fff;
  background: linear-gradient(90.06deg, #A179F5 46.35%, #2EB9C8 99.94%);
  border: 0;
}

.btn-group .join-btn {
  color: #717D84;
  background: #CDD5D9;
  text-decoration: none;
  border: 0;
}

.btn-group .find-account-btn {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.find-account-link {
  cursor: pointer;
  border: 0;
  background: transparent;
  color: #498DEA;
  font: inherit;
}

.light-mode .title-wrapper p {
  color: #2B343A;
}

.dark-mode .logo-light {
  display: none;
}

.dark-mode .logo-dark {
  display: block;
}

.dark-mode .title-wrapper p {
  color: #FFFFFF;
}

.dark-mode .find-account-link {
  color: #FFFFFF;
}

.dark-mode .btn-group .join-btn {
  background: #FFFFFF;
}

@media (max-width: 385px) {
  main.login-page {
    padding-top: 96px;
    padding-bottom: 64px;
    min-height: calc(100vh - 96px);
  }
  .login-wrapper {
    padding: 0 20px;
  }
}
