button.btn-sum {
  padding: 17px 21px;
  font-size: 17px;
  border-radius: 4px;
  border: none;
  outline: none;
  background-color: #4d13d1;
  font-weight: 600;
  color: #fff;
  margin-right: 40px;
}

.sign-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100vh;
}

.sign-up .col--2:last-child img {
  width: 80%;
}
.col--2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  font-family: var(--mainFont);
}
.col--2:first-child {
  align-items: flex-start;
  padding: 0 95px;
}
@media (max-width: 1173px) {
  .col--2:first-child {
    align-items: flex-start;
    padding: 0 34px;
  }
}
@media (max-width: 928px) {
  .col--2:last-child {
    display: none;
  }
  .sign-up {
    grid-template-columns: 1fr;
  }
}
.col--2:first-child form {
  width: 100%;
}
.col--2:first-child form button {
  width: 100%;
  margin: 19px 0px;
}
.col--2:first-child form .chek {
  display: flex;
  align-items: flex-start;
}
.col--2:first-child form .chek input {
  margin-right: 10px;
}
.col--2:first-child form .chek label {
  font-family: var(--mainFont);
  width: 85%;
}
.col--2:first-child form .chek label a {
  color: #4d13d1;
  font-weight: 700;
}
.col--2:first-child h1 {
  margin: 44px 0;
}
.sign-up .col--2:last-child {
  font-family: var(--mainFont);
  color: #fff;
  background-image: url(../assets/gradi.png);
  text-align: center;
}
.sign-up .col--2:last-child h1 {
  width: 100%;
}
.sign-up .col--2:last-child p {
  font-weight: 200;
  font-size: 13px;
  width: 70%;
}
.switch {
  width: 67px;
  height: 13px;
  display: flex;
  justify-content: space-between;
  margin: 20px auto;
}
.switch span {
  background-color: #a587ff;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.switch span:first-child {
  background-color: #fff;
}
.inp {
  display: flex;
  flex-direction: column;
  font-family: var(--mainFont);
  position: relative;
}
.inp label {
  font-weight: 600;
  font-size: 14px;
}
.inp input {
  padding: 13px;
  outline-color: #4d13d1;
  /* border-color: #DCDCDC; */
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  font-size: 15px;
  margin: 10px 0 27px;
}
.inp .hidden {
  position: absolute;
  right: 14px;
  top: 37%;
}
.last-p {
  margin-left: 12%;
}
.last-p a {
  color: #4d13d1;
  text-decoration: none;
}
