
.bad_input
{
    border: 1px solid red;
}

form h3
{
    width: 85%;
}

input, select, label, textarea
{
    font-family: FuturaFix;
    width: 90%;
    height: 35px;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
    border: 0;
    background-color: rgb(68, 65, 68);
    text-indent: 30px;
}

textarea
{
    height: 105px;
    resize: none;
    text-indent: 0;
}

label
{
    display: block;
    position: relative;
}

label > input
{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 35px;
}

label > span
{
    font-family: FuturaFix;
    position: relative;
    left: 15px;
    top: 5px;
}

input[type="submit"]
{
    background-color: darkred;
    font-weight: bold;
}

#reset_formular
{
    position: absolute;
    top: 50px;
    right: 50px;
    border-radius: 25px;
    width: 50px;
    height: 50px !important;
    background-color: darkred;
    box-shadow: -5px 5px 5px black;
    text-indent: 0;
}

#alert
{
    z-index: 3000;
    background-color: black;
    border: 10px solid darkred;
    box-shadow: 0px 0px 10px black;
    position: fixed;
    width: 400px;
    height: 100px !important;
    top: -300px;
    left: calc((100vw - 400px) / 2);
    opacity: 0;
    transform: rotateX(360deg) rotateY(720deg) rotateZ(135deg);
    transition: all 2s ease-in-out;
    text-align: center;
}

#alert.displayed
{
    opacity: 1;
    top: calc((100vh - 100px) / 2);
    transform: rotateX(0deg) rotateY(0deg);
}

@media (orientation: landscape) and (min-width: 1280px)
{
    input, select, label, textarea, label > span
    {
	font-size: 1.25rem;
    }
}

@media (orientation: portrait), (max-width: 1280px)
{
    #formular
    {
	position: relative;
	width: 100%;
    }
    input, select, label, textarea, label > span
    {
	font-size: 1rem;
	top: 8px;
    }
    label > span
    {
	left: 5px;
    }
}
