    body {
      font-family: 'Amiri', serif;
      background-image: url('assets/eid-bg.jpg');
      background-position: center top;
      background-size: cover;
      background-repeat: no-repeat;
      margin: 0;
      padding: 0;
      text-align: center;
      color: #222;
    }

    .container {
      background-color: rgba(255, 255, 255, 0.93);
      padding: 30px;
      margin: 50px auto;
      max-width: 500px;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }

    .logo img {
      width: 150px;
      margin-bottom: 15px;
      max-width: 100%;
    }

    h2 {
      font-size: 3rem;
      margin-bottom: 10px;
    }

    p {
      font-size: 2rem;
      margin: 5px 0;
    }

    input {
      font-family: 'Amiri', serif;
      padding: 10px;
      font-size: 18px;
      width: 80%;
      margin: 15px 0;
      border-radius: 6px;
      border: 1px solid #ccc;
      text-align: center;
    }

    button {
      background-color: #0060a0;
      color: white;
      font-family: 'Amiri', serif;
      font-size: 18px;
      padding: 8px 24px;
      border: none;
      border-radius: 6px;
      margin: 10px;
      cursor: pointer;
    }

    button:hover {
      background-color: #004f85;
    }

    canvas {
      display: none;
    }

    .footer {
      font-size: 14px;
      margin-top: 30px;
      color: #666;
    }
    .input-wrapper {
  position: relative;
  display: inline-block;
  width: 80%;
}

.tooltip-error {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #f44336;
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  margin-top: 4px;
  white-space: nowrap;
  display: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 10;
}

.tooltip-error::after {
  content: '';
  position: absolute;
  top: -6px;
  right: 10px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #f44336 transparent;
}