body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f6f8fa;
    color: #24292e;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #d1d5da;
    border-radius: 6px;
}

h1 {
    text-align: center;
    border-bottom: 1px solid #e1e4e8;
    padding-bottom: 10px;
    margin-top: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group-checkbox {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.form-group-checkbox input {
    margin-right: 8px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 20px;
    border: 1px solid #d1d5da;
    border-radius: 6px;
    box-sizing: border-box; /* Important for padding and width */
}

.help-text {
    font-size: 12px;
    color: #586069;
    margin-top: 5px;
}

button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #2ea44f;
    border: 1px solid rgba(27, 31, 35, 0.15);
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #2c974b;
}

#status-container {
    margin-top: 30px;
}

#log-output {
    background-color: #24292e;
    color: #f6f8fa;
    padding: 15px;
    border-radius: 6px;
    white-space: pre-wrap; /* Allows long lines to wrap */
    word-wrap: break-word;
    height: 200px;
    overflow-y: auto;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
    font-size: 13px;
}