body {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 0;
    background-color: #f9f9f9;
}
form {
    max-width: 400px;
    margin: auto;
}
input, select, button {
    width: 100%;
    margin: 5px 0;
    padding: 8px;
    box-sizing: border-box;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
th, td {
    padding: 10px;
    border: 1px solid #ccc;
}
@media (max-width: 600px) {
    input, select, button {
        font-size: 16px;
    }
    table, th, td {
        font-size: 14px;
    }
}
/* Flash messages styling */
.flash-message {
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
}

.flash-message.error {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.flash-message.success {
    background-color: #efe;
    color: #363;
    border: 1px solid #cfc;
}

.flash-message.info {
    background-color: #eef;
    color: #336;
    border: 1px solid #ccf;
}

.flash-message.warning {
    background-color: #ffe;
    color: #663;
    border: 1px solid #ffc;
}
.container{
  width: 100%;
  text-align: center;
}

/* Small text styling for password requirements */
small {
    color: #666;
    font-size: 12px;
}
