body {
    background-color: #121212;
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    margin: 0;
}

.container {
    text-align: center;
}

.login-form form {
    display: flex;
    flex-direction: column;
}

input[type="text"],
input[type="password"] {
    padding: 12px;
    margin: 12px 0;
    background-color: #333;
    border: none;
    color: #fff;
}

button {
    padding: 12px;
    margin: 12px 0;
    background-color: #0059b9;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%; /* Ensure consistent width */
}

button:hover {
    background-color: #003267;
}

#agentsButton {
    background-color: #003238;
}

#agentsButton:hover {
    background-color: #13362b;
}
.rules {
 
  padding: 5px 10px;
  background-color: #f0f0f0;
  color: #333;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  max-width: 25%;
  margin-top: 10px;
}

.rules:hover {
  background-color: #e0e0e0;
}
