body {
    font-family: Arial, sans-serif;
    background-color: black;
    margin: 0;
    padding: 0;
}

.hidden {
    display: none;
}

#break {
    color: red;
}

#break2 {
    color: red;
}

#paragraph {
    color: red;
}

#paragraph2 {
    color: red;
}

#incorrectPassphrase2 {
    color: red;
}

#error {
    color: red;
}

#error2 {
    color: red;
}

.container {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #333;
}

label {
    margin-top: 15px;
    font-weight: bold;
}

input[type="password"]{
    padding: 10px;
    margin-top: 5px;
    border: solid 1px #ccc;
    border-radius: 4px;
    font-size: 16px;
}

select {
    padding: 10px;
    margin-top: 30px;
    border: solid 1px #ccc;
    border-radius: 4px;
    font-size: 16px;
}

button {
    margin-top: 20px;
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

.required {
    color: red;
}