 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: linear-gradient(135deg, #0052D4, #4364F7);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }

    .login-container {
      width: 900px;
      max-width: 95%;
      background: #fff;
      border-radius: 20px;
      display: flex;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0,0,0,0.2);
      height: 50vh;
    }

    .left-side {
      background: radial-gradient(circle at center, #0052d4, #4364f7);
      color: white;
      flex: 1;
      padding: 60px 40px;
      position: relative;
    }

    .left-side h1 {
      font-size: 32px;
      margin-bottom: 10px;
    }

    .left-side h3 {
      font-weight: 300;
      font-size: 16px;
    }

    .circle {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
    }

    .circle.small {
      width: 100px;
      height: 100px;
      bottom: 40px;
      right: 40px;
    }

    .circle.large {
      width: 200px;
      height: 200px;
      bottom: -80px;
      left: -60px;
    }

    .right-side {
      flex: 1;
      padding: 60px 40px;
    }

    .right-side h2 {
      font-size: 28px;
      margin-bottom: 20px;
    }

    .form-group {
      margin-bottom: 15px;
    }

    .form-group input {
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 14px;
    }

    .form-group.password {
      position: relative;
    }

    .form-group.password .show {
      position: absolute;
      top: 12px;
      right: 12px;
      cursor: pointer;
      font-size: 12px;
      color: #0052d4;
    }

    .options {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      margin-bottom: 20px;
    }

    .btn-primary {
      width: 100%;
      background: #0052d4;
      color: white;
      padding: 12px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      margin-bottom: 10px;
    }

    .btn-secondary {
      width: 100%;
      background: transparent;
      color: #0052d4;
      padding: 12px;
      border: 1px solid #0052d4;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
    }

    .signup {
      text-align: center;
      margin-top: 20px;
      font-size: 14px;
    }

    .signup a {
      color: #0052d4;
      text-decoration: none;
      font-weight: bold;
    }
    #msg2 {
      background-color: red;
      padding: 10px;
      color: #fff;
      border-radius: 5px;
      text-align: center;
    }
    .btn-primary.enter:hover {
      background: linear-gradient(to right, rgb(2, 0, 138), rgb(60, 60, 192));
    border-color: red;
    color: white;
    cursor: pointer;
    font-weight: 800;
    transition: background 0.3s ease;
}
  

