body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #0d1117;
    margin: 0px;
    color: #c9d1d9;
    user-select: none;
}

.container {
    background-color: #161b22;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    width: 300px;
}

label {
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
    color: #c9d1d9;
}

input[type="text"] {
    width: 200px;
    padding: 10px;
    margin-bottom: 8px;
    background-color: #0d1117;
    color: #c9d1d9;
    border: 1px solid #30363d;
    border-radius: 6px;
    font-size: 16px;
    text-align: center;
}

input[type="text"]:focus {
    border-color: #58a6ff;
    outline: none;
}

button {
    padding: 10px 20px;
    background-color: #1f6feb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin: 5px;
    font-size: 16px;
    width: 200px;
}

.password-window {
    margin-top: 20px;
    padding: 15px;
    background-color: #0d1117;
    border: 1px solid #30363d;
    border-radius: 6px;
    min-height: 60px;
    display: none;
    align-items: center;
    justify-content: center;
}

.password {
    font-size: 18px;
    font-weight: bold;
    color: #58a6ff;
    word-wrap: break-word;
    text-align: center;
    width: 100%;
}

.checkbox-group {
    text-align: left;
    margin: 0px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.checkbox-item {
    display: flex;
    align-items: center;
    margin: 12px 0;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #1f6feb;
}

.checkbox-label {
    font-size: 14px;
    color: #c9d1d9;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0px 0px;
}
