/* ============== Service Message Pages (404, errors) ============== */

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Verdana, sans-serif;
    font-size: 0.9em;
    line-height: 1.2em;
    background-color: #101010;
    color: #D0D0D0;
}

a {
    color: #e3c089;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#system {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 600px;
    padding: 40px 20px;
    text-align: center;
}

.message-block {
    padding: 40px;
    border: 1px dashed #454545;
    background-color: #252525;
}

.message-code {
    font-size: 4em;
    color: #E3C089;
    font-weight: bold;
    margin-bottom: 16px;
}

.message-title {
    font-size: 1.4em;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.message-body {
    font-size: 1em;
    color: #AAAAAA;
    margin-bottom: 32px;
}

.message-go-home {
    margin-top: 24px;
}

.main-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid #E3C089;
    color: #E3C089;
    background-color: #303030;
    text-decoration: none;
    font-size: 1em;
}

.main-btn:hover {
    background-color: #404040;
    text-decoration: none;
}
