:root
{
    --background-web: #c2c2c2;
    --background-hell: #C5E2C6;
    --background-dunkel:rgb(53, 87, 53);
    --backgoundEingabefeld: #C5E2C6;
    --schriftFabeLabel: #0a0a0a;
    --outBoxColor: var(--background-dunkel);
    --boxColor: rgba(255, 193, 37);
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100dvh;
    background: var(--background-web);
}

.wrapper {
    display: flex;
    width: 100%;
    height: 86px;
    background: var(--background-hell);
    flex-direction: column;
}
.wrapper1 {
    display: flex;
    width: 100%;
    height: 100px;
    background: var(--background-hell);
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}
.wrapper .wrapper1 .Text .metro
{
    margin-left: 32px;
}
.wrapper .Text
{
    color: #242;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: bold;
}
.wrapper .line
{
    height: 24px;
    width: 100%;
    background-color: #242;
}

.box {
    position: relative;
    margin-top: 32px;
    display: flex;
    width: 50pc;
    height: 870px;
    background: var(--outBoxColor);
    border-radius: 8px;
}


.box form {
    position: absolute;
    inset: 4px;
    background: var(--boxColor);
    padding: 24px;
    border-radius: 8px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    
    
}

.box form .headline
{
    display: flex;
    height: 35px;
    justify-content: center;
    margin-bottom: 10px;
    

}
.box form .headline h1
{
    font-size: 1.4rem;
    font-style: italic;
    font-weight: bold;
}


.box form .inputBoxDouble {
    display: flex;
    
    position: relative;
    width: 100%;
    justify-content: space-between;
}

.box form .inputBoxDouble .inputBox {
    display: flex;
    margin-top: 10px;
    flex-direction: column;
    width: 49%; 
    position: relative; 
}

.box form .inputBox {
    display: flex;
    margin-top: 10px;
    flex-direction: column;
    width: 100%; 
    position: relative; 
}

.box form .inputBox span
{
    position: relative;
    left: 0;
    padding:  30px 0px 10px;
    pointer-events: none;
    color: #8f8f8f;
    font-size: 1;
    letter-spacing: 0.05em;
    transition: 0.5s;
}

.box form .inputBox input
{
    position: absolute;
    width: 100%;
    padding: 30px 10px 10px;
    background: transparent;
    outline: none;
    border: none;
    box-shadow: none;
    color: #23242a;
    font-size: 1em;
    letter-spacing: 0.05em;
    transition: 0.5s;
    z-index: 10;
}
.box form .inputBox input:valid ~span,
.box form .inputBox input:focus ~span
{
    color: var(--schriftFabeLabel);
    font-size: 0.75em;
    transform: translateY(-34px);
}
.box form .inputBox i
{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: 0.5s;
    pointer-events: none;
}
.box form .inputBox input:valid ~ i,
.box form .inputBox input:focus ~ i
{
    height: 45px;
    background-color: var(--backgoundEingabefeld);
}



.box form .inputBoxDropDown {
   
    margin-top: 10px;
    position: relative;
    flex-direction: column;
    width: 100%;
}

.box form .inputBoxDropDown .dropdown
{
    display: flex;
    width: 100%;
    margin-top: 10px;
    align-items: center;
}

.box form  .inputBoxDropDown .dropdown label
{
    display: flex;
    justify-content: flex-start;
    font-size: 1;
    letter-spacing: 0.05em;
    width: 180px;
    color: var(--schriftFabeLabel);

}

.box form   .dropdown select
{
    padding: 8px 0px 8px;
    width: 100%;
    font-size: 1em;
    background-color: var(--backgoundEingabefeld);
    
    
}
.box form .inputButton
{
    margin-top: 10px;
    display: flex;
    justify-content: center;
}
.box form .inputButton input
{
    width: 128px;
    height: 32px;
}