body {
    background-image: url('../images/MOCKUPPL-SPLENDA-MAY.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.logo {
    width: 250px;
}

.flag-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 600px;
}


.flag {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}

.flag:hover {
    transform: scale(1.2);
    /* box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.7); */
    cursor: pointer;
}

.select-country {
    font-size: 26px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    margin-bottom: 15px;
}