
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: linear-gradient(135deg, #4e54c8, #8f94fb);
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .login-container {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      display: flex;
      overflow: hidden;
      max-width: 900px;
      width: 100%;
    }

    .login-left {
      background: url('https://img.freepik.com/free-vector/school-building-concept-illustration_114360-2755.jpg?t=st=1728214793~exp=1728218393~hmac=ea2e1b95d4c556a2a4da3fdf73f2e9d00c9f40f30b83395d4e0106e29d16c1db&w=826') center/cover no-repeat;
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px;
      color: white;
      text-align: center;
    }

    .login-left h2 {
      background-color: rgba(0, 0, 0, 0.6);
      padding: 10px 20px;
      border-radius: 10px;
      font-size: 24px;
      font-weight: 600;
    }

    .login-right {
      flex: 1;
      padding: 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .login-right h3 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 26px;
      color: #333;
      font-weight: 600;
    }

    .form-group {
      margin-bottom: 20px;
    }

    label {
      font-size: 14px;
      color: #555;
      display: block;
      margin-bottom: 8px;
    }

    input {
      width: 100%;
      padding: 12px 15px;
      border-radius: 8px;
      border: 1px solid #ddd;
      outline: none;
      font-size: 15px;
      transition: 0.3s;
    }

    input:focus {
      border-color: #4e54c8;
      box-shadow: 0 0 4px rgba(78, 84, 200, 0.5);
    }

    .btn-login {
      width: 100%;
      padding: 12px;
      border: none;
      border-radius: 8px;
      background: #4e54c8;
      color: white;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn-login:hover {
      background: #3b3fc1;
    }

    .extra-links {
      text-align: center;
      margin-top: 20px;
    }

    .extra-links a {
      color: #4e54c8;
      text-decoration: none;
      font-size: 14px;
      transition: 0.3s;
    }

    .extra-links a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .login-container {
        flex-direction: column;
      }
      .login-left {
        height: 200px;
      }
      .login-right {
        padding: 40px 20px;
      }
    }
