body
{
    overflow: auto;
    margin: 0;
    padding: 0;
}

#background-image
{
	background-size: cover;
	background-repeat: no-repeat;
	height: 100vh;
	background-position: center;
}

#background-fader
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #343434cc;
}

#content-wrapper
{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    overflow: auto;
}

#form-wrapper
{
    width: calc(100% - 20px);
    max-width: calc(600px - 20px);
    padding: 10px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    background-color: #bbbbbb99;
    border-radius: 15px;
    box-shadow: 0px 0px 100px 0px black;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#options-wrapper
{
    display: flex;
    justify-content: center;
}

form
{
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

#login-form
{
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#login-form #form-input-wrapper
{
    height: auto;
    -webkit-transition: height 0.4s ease;
    transition: height 0.4s ease;
}

#login-form #form-input-wrapper #login-api-message
{
    border-radius: 10px;
    width: calc(100% - 25px);
    margin: 0 auto;
    height: 0px;
    padding: 0px;
    font-size: 0px;
    transition: all 0.4s ease
}

#login-form #form-input-wrapper #login-api-message.active
{
    height: auto;
    padding: 10px;
    font-size: 16px;
}

#login-form #form-input-wrapper #login-api-message.error
{
    background-color: #FF000077;
}

#login-form #form-input-wrapper #login-api-message.success
{
    background-color: #00FF0077;
}

#login-form .form-input-wrapper span.message
{
    padding: 0;
    margin: 0;
    font-size: 0;
    cursor: default;
}

#login-form .form-input-wrapper span.message:hover
{
    color: whitesmoke;
    background-color: #29292b;
}

#login-form .form-input-wrapper span.active
{
    padding: 10px;
    margin: 10px;
    font-size: 16px;
}

input, button
{
    text-align: center;
    width: calc(100% - 50px);
    height: 20px;
    padding: 10px;
    border-radius: 10px;
    font-size: 16px;
    margin: 10px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

button
{
    cursor: pointer;
}

input:active, input:focus, button:active, button:hover, button:focus
{
    box-shadow: 0px 0px 10px 2px;
}

input:disabled, button:disabled, label.disabled, label.disabled span
{
    cursor: not-allowed;
}

input[type=submit], button
{
    height: 60px;
    margin: 10px auto;
    font-size: 18px;
}

span, a
{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: whitesmoke;
    background-color: #29292b;
    border-radius: 10px;
    padding: 10px;
    margin: 15px;
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

a, a:hover, a:active, a:visited
{
    color: whitesmoke;
    text-decoration: none;
}

span:hover, a:hover
{
    color: black;
    background-color: whitesmoke;
}

.container
{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0;
    margin: 10px;
    height: 25px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container input
{
    display: none;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark
{
    position: relative;
    display: block;
    height: 5px;
    width: 5px;
    background-color: #29292b;
    border-radius: 10px;
    margin: 0;
    margin-left: 10px;
    border: 2px solid #29292b;
}

.container:hover input ~ .checkmark
{
    background-color: whitesmoke;
}

.container input:checked ~ .checkmark
{
    background-color: whitesmoke;
}

.checkmark:after
{
    content: "";
    position: absolute;
    display: none;
}

.container input:checked ~ .checkmark:after
{
    display: block;
}

.container .checkmark::after
{
	left: 9px;
    top: 3px;
    width: 5px;
    height: 14px;
	border: solid #29292b;
	border-width: 0px 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

#language-select-wrapper
{
    opacity: 0;
    visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
	background-color: #343434dd;
	justify-content: center;
	align-content: center;
    flex-direction: row;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#language-select-container
{
    margin: 0 auto;
    display: block;
    height: auto;
    width: 300px;
}

#language-select-container a
{
    padding: 30px 0px;
}

#language-select-container button
{
    width: calc(100% - 20px);
}

#dropdown-wrapper
{
    width: 670px;
}

body
{
    padding-top:0px;
}
