td {
    display: inline-flex;
    margin-top: 6px;
}

#loginarea {
    width: 400px; 
    /* height: 248px; */
    font-size: 12px;
    font-weight: bold;
    /* margin: auto; */
    /* position: absolute; */
    /* display: contents; */
    margin: auto;
    /* display: inline-block; */
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#langs {
    padding: 10px;
    float: right;
    background: rgba(255, 255, 255, 0.7);
    top: 0px;
    position: absolute;
    right: 0px;
}

html {
    height: 100%;
}

#logincontainer {
    color: white;
    /* margin-left: auto; */
    /* margin-right: auto; */
    overflow: none;
    padding: 24px 18px 0px 18px;
    /* width: 220px; */
    /* width: fit-content; */
    background: var(--cuma-login, #DA291C);
    border-radius: 8px;
    width: fit-content;
    width: -moz-fit-content;
    height: fit-content;
}



#logincontainer table {
    width: 100%;
}

#logincontainer table img {
    border: 1px solid white;
    border-radius: 8px;
    padding: 4px;
    background: white;
}


#logo {
    padding-bottom: 16px;
    padding-top: 8px;
}

#logincontainer a {
    color: white;
    font-size: 0.8em;
}

#logincontainer a:hover {
    color: white;
    font-size: 0.8em;
    text-shadow: 2px 2px 8px black;
}

.logpass {
    outline: none;
    color: black;
    height: 22px;
    border: 0px;
    font-weight: bold;
    margin-left: 4px;
    height: 32px;
    width: 100%;
    padding-left: 8px;
    box-shadow: 1px 1px 5px #444444;
    border-radius: 8px;
}

.logpass:focus {
    background: #00BEFF;
    box-shadow: 2px 2px 10px black;
}


.logpasssub {
    margin-top: 44px;
    background: white;
    margin-top: 5px;
    height: 32px;
    outline: none;
    width: 160px;
    color: black;
    border: 0;
    box-shadow: 1px 1px 5px #444444;
    cursor: pointer;
    font-family: "cuma-bold";
    font-size: 1.25em;
    margin-bottom: 14px;
    border-radius: 8px;
    margin-left: auto;
    margin-right: auto;
}

.logpasssub:focus,
.logpasssub:hover {
    box-shadow: 2px 2px 10px black;
}

#logincontainer table td {
    width: 100%;
}

body {
    overflow-y: hidden;
    overflow-x: hidden;
}

.inputheader {
    width: 48px;
    background: rgb(255, 255, 255, 1);
    border-radius: 8px;
    position: relative;
}

.inputheader>img {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 18px;
}

.flag {
    margin-left: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.flag.flagselected {
    transform: scale(1.2);
}

.flag:hover {
    transform: scale(1.1) rotate(3deg);
}