body {
    background-color: #1e1e1e;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

h1 {
    text-align: center;
    font-size: 2.5em;
}

.container {
    max-width: 600px;
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    border: 2px solid #00ff00;
    border-radius: 10px;
    background-color: #2e2e2e;
    box-sizing: border-box;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #00ff00;
    border-radius: 5px;
    background-color: #1e1e1e;
    color: #00ff00;
    font-size: 1em;
    display: block;
    margin: 10px 0; /* Center the input boxes */
}

button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    background-color: #00ff00;
    color: #1e1e1e;
    font-size: 1em;
    cursor: pointer;
    display: block;
    margin: 10px 0; /* Center the button */
}

button:hover {
    background-color: #00cc00;
}

.progress-container {
    width: 100%;
    background-color: #1e1e1e;
    border: 1px solid #00ff00;
    border-radius: 5px;
    margin-top: 20px;
}

.progress-bar {
    width: 0;
    height: 20px;
    background-color: #00ff00;
    border-radius: 5px;
    transition: width 0.5s;
}

#codeLabel {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 1.2em;
}

#inputBox2,
#inputBox3,
#inputBox4,
#inputBox5,
#inputBox6,
#inputBox7,
#inputBox8,
#inputBox9,
#inputBox10,
#inputBox11 {
    display: block;
    margin: 20px auto;
    width: calc(100% - 40px); /* Adjust width to match the container */
    padding: 10px;
    border: 1px solid #00ff00;
    border-radius: 5px;
    background-color: #1e1e1e;
    color: #00ff00;
    font-size: 1em;
    height: 150px; /* Set a fixed height */
    overflow-y: auto; /* Enable vertical scrolling */
    white-space: pre; /* Preserve whitespace */
}

#emailText {
    cursor: pointer;
    text-decoration: underline;
}

#emailText:hover {
    color: #00cc00;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .container {
        width: 100%;
        padding: 10px;
    }

    h1 {
        font-size: 2em;
    }

    input[type="text"],
    input[type="password"],
    button {
        font-size: 0.9em;
        padding: 8px;
    }

    #inputBox2,
    #inputBox3,
    #inputBox4,
    #inputBox5,
    #inputBox6,
    #inputBox7,
    #inputBox8,
    #inputBox9,
    #inputBox10,
    #inputBox11 {
        width: calc(100% - 20px); /* Adjust width for smaller screens */
        padding: 8px;
        font-size: 0.9em;
    }
}