html, body {
    background-color: #0F256E;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 450px;
    margin: 0 auto;
    min-height: 100vh;
    background-size: 100%;
    background-repeat: no-repeat;
    background-color: #0F256E;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

img {
    width: 100%;
    display: block;
}

.container > a {
    color: #fff;
    width: 190px;
    height: 46px;
    border: 1px solid #ffffff50;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    text-decoration: none;
}

.locales {
    position: absolute;
    left: 20px;
    top: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.locales > img {
    width: 20px;
    height: 20px;
    margin-right: 4px;
}

.locales-selector {
    position: absolute;
    left: 20px;
    top: 50px;
    color: #333;
    padding: 0;
    display: none;
}

.locales-selector > ul {
    background: #fff;
    list-style: none;
    padding: 2px;
    border-radius: 6px;
    margin: 0;
}

.locales-selector > ul > li {
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    min-width: 100px;
}

.locales-selector > ul > li:hover {
    background: #f5f5f5;
}

.locales-selector > ul > li.active {
    background: #1a4efae0;
    color: #fff;
}
