body {
    background-color: rgb(180, 130, 80);
    width: 100%;
    margin: 0vw;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

#loginstuff {
    position: relative;
    width: 50vh;
    height: 50vh;
    background: transparent;
    border-radius: 15px;
    border: 0.3vh solid rgba(255, 255, 255, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(15px);
    margin-top: 7vh;
}

form {
    display: flex;
    align-items: center;
    flex-direction: column;
}

h2 {
    font-size: 2em;
    color: #fff;
    text-align: center;
    margin-top: 3vh;
}

.input-box {
    position: relative;
    width: 45vh;
    margin-top: 6vh;
    border-bottom: 1px solid #fff;
}

.input-box:valid {
    background-color: rgb(180, 130, 80);
}

.input-box label {
    position: absolute;
    top: 50%;
    left: 1vh;
    transform: translateY(-50%);
    font-size: 1em;
    color: #fff;
    pointer-events: none;
    transition: .5s;
}

.input-box input:focus~label,
.input-box input:valid~label {
    top: -1vh;
}

.input-box input {
    width: 100%;
    height: 7vh;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color: #fff;
    padding: 0 35px 0 5px;
}

.input-box .icon {
    position: absolute;
    right: 8px;
    top: 50%;
    color: #fff;
    transform: translateY(-50%);
}

button {
    width: 50%;
    height: 5vh;
    background-color: #fff;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 1em;
    color: #000;
    font-weight: 500;
    margin-top: 5vh;
}

a {
    text-decoration: none;
    color: black;
}

#beforeLogin {
    width: 100%;
    display: flex;
    justify-content: center;
}

#afterLogin {
    width: 100%;
    display: flex;
    justify-content: center;
}

#hiddenThing {
    width: 100%;
}

#datenManager {
    width: 45vh;
    height: 55vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    float: left;
    margin-left: 35vh;
    position: relative;
    background: transparent;
    border-radius: 15px;
    border: 0.3vh solid rgba(255, 255, 255, .5);
    backdrop-filter: blur(15px);
    margin-top: 7vh;
}

#liste {
    float: right;
    width: 70vh;
    margin-right: 35vh;
    margin-top: 20vh;
}

#liste ul {
    list-style: none;
    color:greenyellow;
}

.dMbtn {
    width: 30vh;
}

.dMbtn:nth-of-type(2) {
    margin-top: 3vh;
}

#loeschNummer {
    margin-top: 7vh;
    width: 30vh;
    height: 5vh;
    padding-left: 1vh;
}

#logout button {
    margin-top: 7vh;
}