.login {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 27px 25px;
}
.login__box {
  width: 528px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 85px;
}
.login__logo {
  margin-bottom: 52px;
}
.login__head {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.login__head h2 {
  font-size: var(--Size-Title3);
  font-weight: 600;
  line-height: var(--Line-Height-Single-Title3);
  color: var(--Primary-Text-Color-Gray-Text-Color-800);
}
.login__head p {
  font-size: var(--Size-body3);
  font-weight: 400;
  line-height: var(--Line-Height-Single-body3);
  color: var(--Primary-Text-Color-Gray-Text-Color-400);
}
.login__fields {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.login__btns {
  margin: 65px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.login__btns button {
  padding: 12px 16px;
  font-size: var(--Size-caption);
  font-weight: 500;
  line-height: var(--Line-Height-Single-caption);
}
.login__graphic {
  width: 684px;
  height: 666px;
  border-radius: 24px;
  background: linear-gradient(180deg, #d2e0fe 0%, #f3f6ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}