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

h1 {
    text-align: center;
    color: #f3f3f3;
    margin-top: 50px;
    font-size: 2.5em;
}

/* Style for the paragraph */
p {
    font-size: 1.2em;
    color: #f3f3f3;
    text-align: center;
    line-height: 1.6;
    margin: 20px auto;
    width: 80%;
}

/* Style for the input (text box) */
input[type="text"], input[type="password"], input[type="email"] {
    width: 300px; /* Set a fixed width */
    padding: 10px; /* Padding inside the text box */
    margin: 10px 0; /* Space around the input box */
    border: 2px solid #000000; /* Light gray border */
    border-radius: 0; /* No rounded corners (square shape) */
    font-size: 1em; /* Font size */
    color: #725241;
    background-color: #232323; /* Transparent background for a flat look */
    outline: none; /* Remove the default outline when focused */
}

button {
    background-color: #725241;
    color: #f3f3f3;
    padding: 12px 20px;
    border: none;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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