    body {
      display: flex;
      flex-direction: column;
      justify-content: space-between; /* Ensures space between content and footer */
      align-items: center;
      min-height: 100vh;
      margin: 0;
      background: linear-gradient(to bottom, #560056, #000000);
    }

    .main {
      display: flex;
      flex-direction: column;
      justify-content: center; /* Centers form content */
      align-items: center; /* Centers content horizontally */
      background-color: #000000;
      border-radius: 15px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
      padding: 10px 20px;
      text-align: center;
      margin: auto; /* Centers the main div within the body */
    }

    h3, label {
      color: #FFFFFF;
    }

    label {
      display: block;
      margin-top: 10px;
      margin-bottom: 5px;
      text-align: left;
      font-weight: bold;
    }

    input {
      width: 100%;
      margin-bottom: 15px;
      padding: 10px;
      box-sizing: border-box;
      border: 1px solid #ddd;
      border-radius: 5px;
      background-color: #696969;
      color: #3d3d3d;
    }

    button {
      padding: 15px;
      border-radius: 10px;
      margin-top: 15px;
      border: none;
      color: white;
      cursor: pointer;
      background-color: #560056;
      width: 100%;
      font-size: 16px;
    }

    .wrap {
      display: flex;
      justify-content: center;
    }

    footer {
      text-align: center;
      color: #FFFFFF;
      padding: 10px 0;
      width: 100%; /* Footer spans the entire width */
      background-color: #000000; /* Optional styling */
    }

    .logo {
      width: 130px; /* Adjust as needed */
      height: auto; /* Maintains aspect ratio */
      display: block;
      margin: 0 auto; /* Centers the logo */
    }