* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
  }
  
  body {
    font-family: "Rubik", sans-serif;
    display: flex;
    background: #fff;
    color: #000;
  }
  @media (max-width: 860px) {
    body {
      flex-direction: column;
    }
  }
  
  .right-container, .left-container {
    flex: 1;
    flex-shrink: 0;
  }
  @media (max-width: 860px) {
    .right-container, .left-container {
      flex: 1 0 auto;
    }
  }
  
  .left-container {
    background-image: url(../img/hero/pexels-joshsorenson-976873.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  .right-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    overflow: auto;
  }
  .right-container__h2 {
    font-size: 30px;
  }
  .right-container__p {
    opacity: 0.5;
    margin: 5px 0 10px;
  }
  .right-container__input {
    width: 350px;
    padding: 15px 20px;
    border-radius: 100px;
    border: 1px solid #000;
    background: transparent;
    color: #000;
  }
  .right-container__input:focus {
    outline: none;
  }
  .right-container__label {
    margin-top: 20px;
    font-size: 14px;
    color: #000;
    font-weight: 600;
  }
  .right-container__bottom-text {
    text-align: center;
    margin-top: 22px;
    font-size: 14px;
    color: #000;
  }
  .right-container__bottom-text > strong {
    color: #000;
  }
  
  .input-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .toggle-container {
    margin: 24px 0;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .toggle-box {
    appearance: none;
    width: 32px;
    height: 16px;
    border-radius: 20px;
    background-color: #ddd;
    cursor: pointer;
    position: relative;
  }
  .toggle-box:checked {
    background-color: #30A2FF;
  }
  .toggle-box:checked::after {
    transform: translateX(16px);
    transition: 0.4s ease-in-out;
  }
  .toggle-box::after {
    position: absolute;
    content: "";
    top: 3px;
    left: 3px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #fff;
  }
  
  .btn-login {
    background-color: #4154F1;
    border: 1px solid #4154F1;
    width: 350px;
    border-radius: 20px;
    padding: 10px 0;
    color: #fff;
  }