body {
  --primary10: #0193ff;
  --primary20: #006cfd;
  --on-primary: #ffffff;
  --secondary10: #ffffff;
  --secondary20: #00285505;
  --on-secondary10: #e7e7e7;
  --on-secondary20: #0e294780;
  --on-secondary30: #0e2947;
  --on-secondary40: #002855;
  margin: 0;
  font-family: 'Grtsk Peta', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--on-secondary30);
  background-color: var(--secondary10);
}

* {
  box-sizing: border-box;
}

.container {
  display: flex;
  flex-direction: row;
  height: 100vh;
  width: 100vw;
  column-gap: 48px;
}

form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex: 1;
  padding: 80px;
}

form > * {
  max-width: 522px;
  width: 100%;
}

h1 {
  font-family: 'Grtsk Tera', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--on-secondary30);
  margin-bottom: 16px;
}

.title {
  display: flex;
}

.title-logo {
  display: flex;
  position: relative;
  margin-bottom: 0;
}

.title-logo::after {
  content: '';
  position: absolute;
  top: 0;
  right: -140px;
  width: 130px;
  height: 13px;
  background-image: url(../img/logo_arhitex.png);
  background-repeat: no-repeat;
  background-size: contain;
}

p {
  margin: 24px 0 140px;
  line-height: 160%;
}

label {
  font-family: 'Grtsk Tera', sans-serif;
  font-weight: 600;
}

input {
  margin-top: 12px;
  margin-bottom: 16px;
  padding: 15px 16px 16px;
  border: 1px solid var(--on-secondary10);
  font-size: 18px;
  line-height: 160%;
  font-weight: 400;
  color: var(--on-secondary30);
  background-color: transparent;
  outline: none !important;
}

button {
  margin-top: 40px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 175%;
  letter-spacing: -0.2px;
  color: var(--on-primary);
  background-color: var(--primary20);
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: var(--primary10);
}

.group {
  max-width: 710px;
  width: 50%;
  height: 100%;
  background-color: var(--primary20);
  background-image: url(../img/group.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (max-width: 1090px) {
  .group {
    display: none;
  }
}
