  .split-container {
    display: flex;
    min-height: 100vh;
  }
  .left-side {
    background: linear-gradient(135deg, #a8e0f1, #88beff);
    color: #fff;
    flex: 3;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .right-side {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .logo {
    font-size: 2rem;
    font-weight: bold;
  }
  @media (max-width: 768px) {
    .split-container {
      flex-direction: column;
    }
    .left-side {
      flex: none;
      background-color: transparent;
      color: #000;
      padding: 2rem 0;
    }
    .right-side {
      flex: none;
      width: 100%;
    }

    .right-side form{
        box-shadow: 1px 1px 8px #16161626;
        padding: 20px;
        border-radius: 15px;
    }
  }
  
  .btn:hover {
  background-color: white;
  color: #0075d4;
  border: 1px solid #0075d4;
}