@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent!important;
}

:root {
    /**/
    --bg-main: #000000;
    --farbe-gelb: #ffaf0f;
}

body,
input {
    font-family: "Poppins", sans-serif;
    background: var(--bg-main);
}

a {
    text-decoration: none!important;
}

.fehlermeldung-passwort,
.fehlermeldung-login,
.fehlermeldung-email,
.fehlermeldung-mobile,
.fehlermeldung-team,
.fehlermeldung-username {
    -display: flex;
    color: rgb(255, 0, 76);
    font-size: 1rem;
    text-align: center;
    height: 30px;
    margin-top: 0.3em;
    align-items: center;
    align-content: center;
    align-self: center;
}

.fehlermeldung {
    position: fixed;
    width: 100%;
    background: var(--farbe-gelb);
    height: 68px;
    z-index: 1000000000!important;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    top: -80px;
    transition: all 0.4s ease-in-out;
    font-weight: 600;
    line-height: 1;
    -font-size: 2rem;
    color: black!important;
}

.fehlermeldung-show {
    top: 0%;
    transform: translateY(0%);
    transition: all 0.4s ease-in-out;
}

.wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    -background: chartreuse;
}

.container {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    background: var(--bg-main);
    height: 100%;
    padding: 0 1.5em;
}

.container-test {
    display: flex;
    width: 100%;
    justify-content: center;
    -flex-wrap: wrap;
    background: var(--bg-main);
    padding: 0 0.3em;
    background: pink;
    align-self: flex-start;
    align-content: flex-start;
    margin-bottom: 1em;
}


/*form styles*/

#msform {
    width: 100%;
    margin: 50px auto;
    text-align: center;
    position: relative;
    display: block;
}

#msform fieldset {
    -background: white;
    border: 0 none;
    border-radius: 3px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px 0;
    box-sizing: border-box;
    width: 90%;
    margin: 0 5%;
    /*stacking fieldsets above each other*/
    position: relative;
}


/*Hide all except first fieldset*/

#msform fieldset:not(:first-of-type) {
    display: none;
}


/*inputs*/

#msform input,
#msform textarea {
    -padding: 15px;
    -border: 1px solid #ccc;
    -border-radius: 3px;
    -margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    -font-family: montserrat;
    -color: #2C3E50;
    -font-size: 13px;
}


/*buttons*/

#msform .action-button {
    width: 100px;
    background: #27AE60;
    background: var(--farbe-gelb);
    font-weight: bold;
    color: black;
    border: 0 none;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button:hover,
#msform .action-button:focus {
    -box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}


/*headings*/

.fs-title {
    font-size: 15px;
    text-transform: uppercase;
    color: var(--farbe-gelb);
    margin-bottom: 10px;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}


/*progressbar*/

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: white;
    color: var(--farbe-gelb);
    text-transform: uppercase;
    font-size: 9px;
    width: 20%;
    float: left;
    position: relative;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 20px;
    line-height: 20px;
    display: block;
    font-size: 10px;
    color: #333;
    color: var(--farbe-gelb);
    background: white;
    background: #333;
    border-radius: 3px;
    margin: 0 auto 5px auto;
}


/*progressbar connectors*/

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    background: #333;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1;
    /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}


/*marking active/completed steps green*/


/*The number of the step and the connector before it = green*/

#progressbar li.active:before,
#progressbar li.active:after {
    background: var(--farbe-gelb);
    color: black;
}

.logo {
    color: var(--farbe-gelb);
    margin-top: 3em;
    margin-bottom: 1em;
}

.forms-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.2s 0.7s;
}

.form-team {
    width: 100%;
    display: block;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.2s 0.7s;
}

.title {
    font-size: 2.2rem;
    line-height: 1.1;
    color: var(--farbe-gelb);
    margin-bottom: 10px;
    text-align: center;
}

.title-small {
    font-size: 1.8rem;
    line-height: 1.1;
    color: var(--farbe-gelb);
    margin-bottom: 10px;
    text-align: center;
    margin-top: 0.2em;
}

input {
    user-select: none;
}

.input-field {
    max-width: 380px;
    width: 100%;
    background-color: #141414;
    margin: 10px 0;
    height: 55px;
    border-radius: 55px;
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 0 0.4rem;
    position: relative;
}

.input-field i {
    text-align: center;
    line-height: 55px;
    color: #c79200;
    transition: 0.5s;
    font-size: 1.1rem;
}

.input-field input {
    background: none;
    outline: none;
    border: none;
    line-height: 1;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--farbe-gelb);
}

.input-field input::placeholder {
    color: #aaa;
    font-weight: 500;
}

.btn {
    max-width: 380px;
    width: 99%;
    background: var(--farbe-gelb);
    border: none;
    outline: none;
    height: 49px;
    border-radius: 49px;
    color: var(--bg-main);
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0.3em 0 1.5em 0;
    cursor: pointer;
    transition: 0.5s;
    text-align: center;
}

.btn:hover,
button:hover {
    background: #e09b0f;
}

.funktion-wrapper {
    display: grid;
    -margin-top: 2em;
}

.funktion {
    cursor: pointer;
    background: #141414;
    border-radius: 24px;
    padding: 0.8em 1.5em;
    font-size: 1rem;
    color: var(--farbe-gelb);
    display: grid;
    width: 100%;
    text-align: center;
    justify-items: center;
    justify-self: center;
    margin-top: 1.5em;
    text-decoration: none!important;
    max-width: 380px;
}

.funktion a {
    text-decoration: none;
    color: initial;
    color: var(--farbe-gelb);
}

.funktion:hover {
    background: rgb(22, 22, 22);
}

.disabled {
    -background: #422e04!important;
}

.disabled-off {
    background: var(--farbe-gelb)!important;
}

.hide {
    display: none;
    opacity: 0.5;
    background: pink;
}

.hide3 {
    -display: none;
    opacity: 0.5;
    background: palegreen;
}

.hide-login {
    display: none;
}

.unhide {
    display: inline-block!important;
}

.hide2 {
    -background: rgb(255, 0, 76);
}

.unhide2 {
    background: var(--farbe-1)
}