/* General body style */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: black;
    color: white;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

/* Login box / profile box */
.box {
    background: black;
    padding: 30px;
    width: 320px;
    text-align: center;
}

/* Inputs */
input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #555;
    border-radius: 5px;
    background: #333;
    color: white;
}

/* Button */
button {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    border: none;
    background: #0077ff;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background: #005fcc;
}

/* Links */
a {
    color: #00aaff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
