* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  
  /* Container for the main layout */
  .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    background-size: cover;
    background-position: center;
    text-align: center;
  }
  
  /* Left section */
  .left {
    width: 75%;
    position: relative;
  }
  
  /* Logo styling */
  .logo {
    z-index: 22;
    position: absolute;
    top: 20px;
    left: 20px;
    width: 150px;
    height: 150px;
    mix-blend-mode: multiply;
  }
  
  .logo img {
    width: 100%;
    height: auto;
  }
  
  /* Background image */
  .bg {
    width: 100%;
    height: 100vh;
  }
  
  .bg img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 0% 100%);
  }
  
  /* Right section */
  .right {
    z-index: 1;
    width: 40%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Form contents */
  .form-contents {
    padding: 20px;
  }
  
  h1 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  
  input[type="email"],
  input[type="password"] {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
 
  
  button.btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button.btn:hover {
    background-color: #45a049;
  }
  
  /* Social buttons */
  .btn-contain {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  
  .google-btn, .fb-btn {
    margin: 0 10px;
  }
  
  .google-btn img, .fb-btn img {
    width: 40px;
    height: 40px;
  }
  .google-btn h1, .fb-btn h1 {
    font-size: 10px;
  }
  
  @media (max-width: 768px) {
    .container {
      background-repeat: no-repeat;
      background-size: contain;
      flex-direction: column;
    }
  
    .left {
      width: 100%;
      height: 50vh;
    }
  
    .right {
      width: 90%;
      margin: 0 auto;
      padding: 20px;
    }
  
    .bg img {
      clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
      width: 100%;
      height: 50vh;
    }
  
    h1 {
      font-size: 32px;
    }
  
    input[type="text"],
    input[type="password"] {
      padding: 12px;
    }
  
    button.btn {
      padding: 12px;
      font-size: 14px;
    }
  
    .google-btn img,
    .fb-btn img {
      width: 35px;
      height: 35px;
    }
  }
  
  @media (max-width: 480px) {
    .right {
      width: 95%;
      padding: 15px;
    }
  
    h1 {
      font-size: 28px;
    }
  
    input[type="text"],
    input[type="password"] {
      padding: 10px;
      font-size: 14px;
    }
  
    button.btn {
      padding: 10px;
      font-size: 12px;
    }
  
    .google-btn img,
    .fb-btn img {
      width: 30px;
      height: 30px;
    }
  }
  #emailLabel{
    -
  }