body {
    margin: 0;
    padding: 0;

    font-family: Arial, sans-serif;

    background: #f4f4f4;
    color: #333;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 100vh;

    text-align: center;
}

.container {
    background: #ffffff;

    padding: 50px;

    border-radius: 12px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.1);

    max-width: 700px;
    width: 90%;
}

.logo {
    margin-bottom: 30px;
}

.logo img {
    max-width: 180px;
    width: 100%;
}

h1 {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 1.4;
}

.region {
    color: #1888CA;
    font-weight: bold;
    font-size: 20px;
}

.error {
    color: #a33838;
}