body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start; /* Align items to the top */
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    background-color: #222;
}

.title-header {
    text-align: center;
    margin-top: 10px; /* Add margin to the top */
}

.title-header-view .title {
    color: white;
    font-size: 50px;
}

.title-header-view .subtitle {
    color: white;
    font-size: 20px; /* Adjust the font size as needed */
}

.subtitle {
    color: white !important; /* Ensure the subtitle is white */
}

.center-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #444;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.center-button:hover {
    background-color: #555;
}

form {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 300px;
    padding: 20px;
    background-color: #333;
    border-radius: 8px;
    margin-top: 20px;
}

form label {
    margin-top: 5px;
    padding-left: 2px;
}

form input[type="text"],
form input[type="password"] {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #444;
    background-color: #222;
    color: white;
    width: 100%;
    box-sizing: border-box;
}

form button[type="submit"] {
    padding: 10px;
    background-color: #444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

form button[type="submit"]:hover {
    background-color: #555;
}

.error-message {
    color: #ff0000;
    font-size: 14px;
    margin-top: 5px;
    text-align: center;
    display: none;
    padding: 5px;
}

.error-message.show {
    display: block;
}
