body {
    background-color: #f4f7f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    border-top: 5px solid #d9534f;
}

.icon {
    margin-bottom: 20px;
}

h1 {
    color: #d9534f;
    margin: 0;
    font-size: 28px;
    letter-spacing: 1px;
}

.divider {
    height: 2px;
    background-color: #eeeeee;
    margin: 20px auto;
    width: 80%;
}

.message {
    color: #333;
    font-size: 18px;
    line-height: 1.6;
}

.info-box {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 15px;
    margin-top: 25px;
    text-align: left;
    font-size: 14px;
    color: #666;
    border-left: 4px solid #ccc;
}

.info-box p {
    margin: 5px 0;
}

.footer {
    margin-top: 30px;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
}