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

.container {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #000000;
    color: white;
    margin-top: 10px; /* Add margin to separate buttons */
}

button:hover {
    background-color: #000000; /* Slightly lighter color for hover effect */
}

#password {
    margin-top: 20px;
    font-size: 18px;
    word-break: break-all;
}
