/* File: assets/css/requirements.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    font-size: 18px;
}
.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
}
.message {
    font-size: 20px;
    text-align: center;
    color: #333;
}
.notice {
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    border: 1px solid;
    font-size: 18px;
    line-height: 1.6;
}
.notice.error {
    border-color: #dc3232;
    background-color: #ffe0e0;
    color: #dc3232;
}
.notice.warning {
    border-color: #ffb900;
    background-color: #fff3cd;
    color: #856404;
}
.notice.success {
    border-color: #46b450;
    background-color: #e0ffe0;
    color: #155724;
}
.notice strong {
    font-weight: bold;
}
