body {
    background-color: #222;
    color: #eee;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    gap: 1rem;
}

.container {
    background-color: #333;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

input, button {
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #444;
    color: #eee;
}

.submit-button {
    background-color: #007bff; /* Blue background color */
    color: white; /* White text color */
    border: none; /* Remove default border */
    padding: 10px 20px; /* Add some padding */
    text-align: center; /* Center text */
    text-decoration: none; /* Remove underline from link */
    display: inline-block; /* Make it behave like a link */
    font-size: 16px; /* Adjust font size */
    cursor: pointer; /* Add cursor on hover */
    border-radius: 5px; /* Add rounded corners */
    transition: background-color 0.3s; /* Add a smooth transition for hover effect */
}

.submit-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.home-link {
    color: #ffffff; /* White color for the link */
}

.home-link:hover {
    text-decoration: underline; /* Add underline on hover */
}

    .modal {
      display: none; 
      position: fixed; 
      z-index: 1; 
      left: 0;
      top: 0;
      width: 100%; 
      height: 100%; 
      overflow: auto; 
      background-color: rgba(0,0,0,0.4); 
    }

    .modal-content {
      background-color: #333;
      margin: 15% auto; 
      padding: 20px;
      border-radius: 10px;
      width: 80%; 
      max-width: 600px; 
      position: relative;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .close {
      color: #aaa;
      position: absolute;
      top: 10px;
      right: 20px;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
    }

    .close:hover,
    .close:focus {
      color: #eee;
      text-decoration: none;
      cursor: pointer;
    }

    @media (max-width: 600px) {
      .modal-content {
        width: 95%;
      }
    }
