    .login-container {
      background: white;
      padding: 2rem;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      width: 100%;
      max-width: 400px;
      text-align: center;
    }
    .logo-holder {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background-color: #e0e0e0;
      margin: 0 auto 1rem auto;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .logo-holder img {
      width: 100%;
      height: auto;
    }
    .login-container h2 {
      text-align: center;
      margin-bottom: 1.5rem;
      color: #2F80ED;
    }
    .login-container label {
      font-weight: 600;
      margin-bottom: .5rem;
      display: block;
      text-align: left;
    }
    .login-container input,
    .login-container select {
      width: 100%;
      padding: .8rem;
      margin-bottom: 1.2rem;
      border: 1px solid #ccc;
      border-radius: 10px;
    }
    .login-container button {
      width: 100%;
      padding: .8rem;
      background: #2F80ED;
      color: white;
      border: none;
      border-radius: 10px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s;
    }
    .login-container button:hover {
      background: #1C60B3;
    }
    @media print {
      .no-print {
        display: none !important;
      }
    }