body {
    font-family: Arial, sans-serif;
    background: #000000;
    padding: 20px;
    height: 100%;
}

h2 {
    width: 300px;
    margin: 0 auto;
    color: white;
}

form {
    width: 300px;
    margin: 0 auto;
    color: rgba(94, 103, 226, 0.74);;
}

button {
    background-color: rgba(94, 103, 226, 0.74);
    color: white;
    padding: 8px 16px;
    margin-top: 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s;
}

button:hover {
  background-color: #5e67e2;
}

input {
    padding: 10px;
    margin-top: 5px;
    border-radius: 10px;
    font-size: 12px;
    font-family: 'Arial', sans-serif;
}

input:focus {
  outline: none;
  border-color: rgba(94, 103, 226, 0.74);
  box-shadow: 0 0 8px rgba(86, 76, 175, 0.4);
  background-color: #b6bacf;
}

footer {
    margin-top: 40px;
    font-size: 14px;
    color: white;
    text-align: center;
}
