.section__login {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0
  }
  .section__login .btn {
    justify-content: flex-start
  }
  .section__login .btn__secondary {
    padding-right: 18px
  }
  .section__login .btn__secondary img {
    height: 24px;
    margin-left: auto
  }
  .section__login__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 32px;
    border: 1px solid #f4f7fd;
    background: #fff;
    padding: 24px;
    min-width: 385px
  }
  .section__login__title {
    color: #0e0637;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -.24px
  }
  .section__login__form {
    padding-top: 20px;
    border-top: 1px solid rgba(233,240,251,.5);
    display: flex;
    flex-direction: column;
    gap: 12px
  }
  .section__login__form__input {
    display: flex;
    flex-direction: column;
    gap: 4px
  }
  .section__login__form__label {
    color: #333;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .065px
  }
  .section__login__form__forget {
    color: #5f78fa;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .065px
  }
  .section__login__form__forget:hover {
    text-decoration: underline
  }
  .section__login__form__checkbox {
    display: flex;
    gap: 12px;
    align-items: center;
    cursor: pointer
  }
  .section__login__form__checkbox input[type=checkbox]:checked+.section__login__form__checkbox__checkmark {
    background-image: url(../img/checkmark_checked.svg)
  }
  .section__login__form__checkbox__input {
    display: none
  }
  .section__login__form__checkbox__checkmark {
    width: 18px;
    height: 18px;
    background-image: url(../img/checkmark.svg);
    display: block;
    border-radius: 50%
  }
  .section__login__form__checkbox__text {
    color: #333;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .065px
  }
  .section__login__form__checkbox__text a {
    color: #5f78fa
  }
  .section__login__form__checkbox__text a:hover {
    text-decoration: underline
  }
  @media (max-width: 600px){
    .section__login__container {
        width: 100%
      }
      .section__login__body {
        width: 100%;
        min-width: auto
      }
      .section__login__title {
        font-size: 18px
      }
      .section__login__form__label {
        font-size: 12px
      }
  }