
.woka-chooseapps {
  display: flex;
  min-height: 100vh;
}

.not-found-content {
  display: flex;
  max-width: 560px;
  height: 100vh;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.wk-nf-title {
  color: blue;
  font-weight: bold;
  margin-bottom: 16px;
}

.wk-nf-btn {
  padding: 8px 10px;
  background-color: transparent;
  border-color: blue;
  border-width: 1px;
  border-radius: 5px;
}

.wk-nf-content {
  margin-bottom: 16px;
}

.woka-chooseapps__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.woka-chooseapps__content-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .woka-chooseapps__content-header {
    width: 80%;
  }
}

@media screen and (min-width: 1440px) {
  .woka-chooseapps__content-header {
    width: 90%;
  }
}

.woka-chooseapps__form {
  width: max-content;
}

.woka-chooseapps__title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
}
.woka-chooseapps__subtitle {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #777;
  margin-bottom: 32px;
}
.woka-chooseapps__btn {
  color: #fff;
  background-color: #2d31fa;
  border-radius: 3px;
  width: 100%;
  transition: all 0.3s ease;
  outline: none;
  border: none;
  padding: 10px 0;
  font-size: 16px;
  margin-top: 32px;
  cursor: pointer;
}
.woka-chooseapps__btn:hover,
.woka-chooseapps__btn:focus,
.woka-chooseapps__btn:active {
  background-color: #1114af;
  color: #fff;
  border: none;
  outline: none;
}

.woka-chooseapps__image-box {
  display: none;
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .woka-chooseapps__image-box {
    display: flex;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    background-color: #d6e5fa;
    flex: 0 0 55%;
    height: 100vh;
    overflow: hidden;
  }
}
@media screen and (min-width: 1024px) {
  .woka-chooseapps__image-box {
    display: flex;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    flex: 0 0 65%;
    background-color: #d6e5fa;
    height: 100vh;
    overflow: hidden;
  }
}
@media screen and (min-width: 768px) {
  .woka-chooseapps__image {
    width: 90%;
  }
}
@media screen and (min-width: 1440px) {
  .woka-chooseapps__image {
    width: 70%;
  }
}

.woka-chooseapps__apps {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.woka-chooseapps__link {
  padding: 10px;
}

.woka-chooseapps__app {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.woka-chooseapps__app:hover {
  transform: scale(1.1);
}
.woka-chooseapps__app:hover .woka-chooseapps__app-name {
  font-weight: 600;
}

.woka-chooseapps__app-logo {
  width: 80px;
  height: 80px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 5px;
  overflow: hidden;
  object-fit: contain;
  margin-bottom: 12px;
}

.woka-chooseapps__app-name {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  max-width: 300px;
  word-wrap: break-word;
}

.woka-chooseapps__img-empty {
  width: 20%;
  margin-bottom: 32px;
}
