/* Global */
body {
    font-family: 'Courier New', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000000;
    margin: 0;
    color: #ccff00;
}

/* Container */
.container {
    background: transparent;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px #ccff00;
    width: 320px;
    text-align: center;
    border: 1px solid #ccff00;
}

/* Header */
h1 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #ccff00;
}

/* Form Groups */
.form-group {
    margin-bottom: 15px;
    text-align: left;
    font-size: 14px;
}

/* Inputs */
input[type="text"],
input[type="number"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    font-family: monospace;
    background-color: #111;
    color: #ccff00;
    border: 1px solid #333;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Checkboxes + Labels */
input[type="checkbox"] {
    accent-color: #ccff00;
    transform: scale(1.2);
    margin-right: 8px;
}

label {
    color: #ccff00;
}

/* Button */
button {
    padding: 12px 20px;
    background-color: #ccff00;
    color: #000;
    font-family: monospace;
    font-size: 14px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    margin-top: 10px;
}

button:hover {
    background-color: #dfff4f;
    transform: scale(1.05);
}

/* Password Output */
#password {
    background-color: #111;
    color: #ccff00;
    font-family: monospace;
    text-align: center;
}