/* styles.css - extracted from index.html */
body {
    font-family: sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}
.container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}
h1 {
    text-align: center;
    color: #4a4a4a;
    margin-bottom: 30px;
}
form {
    display: flex;
    flex-direction: column;
}
label {
    margin-bottom: 8px;
    font-weight: bold;
}
input[type="text"],
input[type="password"] {
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}
button {
    padding: 15px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button:hover {
    background-color: #0056b3;
}
#output {
    margin-top: 30px;
    white-space: pre-wrap;
    background: #e9e9e9;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: monospace;
    overflow-x: auto;
}
#error {
    color: red;
    margin-top: 15px;
    text-align: center;
}
