body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;     /* Centers vertically */
    background-color: #121212;
    color: #ffffff;
    font-family: sans-serif;
}

.center-box {
    display: flex;
    flex-direction: column;  /* Stacks items vertically */
    align-items: center;     /* Centers inner items */
    gap: 20px;               /* Adds space between items */
}

input {
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #444;
}

.links a {
    color: #4ea8de;
    margin: 0 10px;
    text-decoration: none;
}
