    body {
      font-family: Arial, sans-serif;
      background-color: #8885;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
    }
    .container {
      background: #fff;
      border-radius: 12px;
      padding: 0 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      max-width: 500px;
      width: 100%;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      text-align: center;
    }

    .swal-custom{
  z-index: 100000;
}

    .content{
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
    }
    .content .form{
        display: flex;
        flex-direction: column;
        width: 90%;
        gap: 14px 0;
        align-items: center;
        justify-content: center;
    }
    h1 {
      font-size: 1.6rem;
      color: #333;

      margin-bottom: 1rem;
    }
    p {
      font-size: 14px;
      color: #555;
      width: 100%;
      text-wrap: wrap;
      text-align: center;
      margin-bottom: 1.5rem;
      line-height: 1.5;
    }
    input, button {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid #ccc;
      outline: none;
      border-radius: 8px;
      font-size: 1rem;
    }

    button {
     width: calc(100% - 80px);
     text-transform: capitalize;
      background-color: #f7931a;
      color: #fff;
      border: none;
      cursor: pointer;
      text-wrap: nowrap;
      transition: background-color 0.3s;
    }
    button:hover {
      background-color: #c92c3c;
    }
    .note {
      font-size: 0.85rem;
      color: #777;
      margin-top: 1rem;
    }

    footer {
    position: fixed;
    bottom: 0;
      text-align: center;
      padding: 12px 0;
      font-size: 14px;
      color: var(--muted);
    }