body {
    font-family: sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

h1 {
    color: #dc3545; /* Red color for delete action */
    margin-bottom: 15px;
}

p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding in width */
}

.form-group.confirmation {
    display: flex;
    align-items: center;
    text-align: left;
}

.form-group.confirmation input[type="checkbox"] {
    margin-right: 10px;
    width: auto; /* Don't force checkbox width */
}

.form-group.confirmation label {
    margin-bottom: 0; /* Reset margin for checkbox label */
    font-weight: normal;
    color: #555;
}


button[type="submit"] {
    background-color: #dc3545; /* Red */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #c82333; /* Darker red */
}

button[type="submit"]:disabled {
    background-color: #e9aeb3; /* Lighter, disabled red */
    cursor: not-allowed;
}


.message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    font-weight: bold;
}

.message.success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.message.error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}