body {
  background-repeat: repeat;
  background-image: url('../images/bg-image.png');
}

.header__container {
  position: fixed;
  top: 5px;
  left: 16px;
}

.login__container {
  margin-top: 60px;
  width: 680px;
  padding: 32px;
  gap: 16px;
  border-radius: 16px;
  background-color: rgba(246, 244, 255, 1);
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--button-button-primary-focus-border, rgba(214, 196, 243, 1));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.title__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  & img {
    height: 60px;
  }
}

.sub__title {
  width: 100%;
  text-align: center;
  font-family: 'Inter';
  font-size: 31px;
  font-weight: 600;
  line-height: 46.5px;
  color: var(--text-text-primary, rgba(17, 9, 79, 1));
}

.login-item__container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.login-item__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.login__item {  
  width: 258px;
  height: 156px;
  padding: 32px 16px 32px 16px;
  border-radius: 16px;
  border: 1px solid var(--button-button-primary-focus-border, rgba(214, 196, 243, 1));
  background: var(--Harmaasvyt-Valkoinen, rgba(255, 255, 255, 1));
  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;

  & i {
    font-size: 72px;
    font-weight: 900;
    line-height: 108px;
    text-align: center;
    color: var(--text-text-primary, rgba(17, 9, 79, 1));
  }

  & .item_label {
    font-family: 'Inter';
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    text-align: center;
    color: var(--text-text-primary, rgba(17, 9, 79, 1));
  }

  & .item__sub-label {
    font-family: 'Inter';
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: var(--text-text-primary, rgba(17, 9, 79, 1));    
  }
}

.login__item:hover {
  background: var(--Edita-Violetti-10, rgba(241, 235, 251, 1));
  & div, i {
    color: rgba(106, 52, 193, 1);
  }
}  

@media (max-width: 1024px) {
  .login__container {
    width: calc(100% - 80px);
  }

  .login-item__container {
  }

}

@media (max-width: 600px) {
  .login__container {
    width: calc(100% - 80px);
  }

  .login-item__list {
    flex-direction: row;
    justify-content: center;
  }
}