
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: rgb(2, 122, 213);  
}

.wrapper {
    position: relative;
    width: 300px;
    height: 500px;
    background: rgb(38, 34, 34);
    box-shadow: 0 0 20px #0ef;
    border-radius: 20px;
    padding: 40px;
}

.from-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.from-wrapper.sign-up {
    position: absolute;
    top: -10px;
    left: 0px;
}

.passwordChange {
    position: absolute;
    top: 90px;
    left: 40px;
}


h2{
    font-size: 30px;
    color: #fff;
    text-align: center;
}

.input-group{
    position: relative;
    margin: 30px 0;
    border-bottom: 2px solid #fff;
}

.input-group label{
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #fff;
    pointer-events: none;
    transition: .5s;
}

#RegDatum{
    font-size: 17px;
    color: rgb(250, 0, 0);
    margin-bottom: 2px;
}
#RegDatumText{
    font-size: 16px;
    color: rgb(249, 83, 83);
    margin-bottom: 2px;
}
.input-group input{
    width: 220px;
    height: 40px;
    font-size: 16px;
    color: #fff;
    padding: 0 5px;
    background: transparent;
    border: none;
    outline: none;
}


.input-group input:focus~label,
.input-group input:valid~label{
    top: -5px;
}


.remember{
    margin: -5px 0 15px 5px;
}


.remember label{
    color: #fff;
    font-size: 14px;
}

.remember label input{
    accent-color: #0ef;
}

button{
    position: relative;
    width: 100%;
    height: 40px;
    background: #0ef;
    box-shadow: 0 0 10px #0ef;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    cursor: pointer;
    border-radius: 10px;
    border: none;
    outline: none;
}


.logginFehler {
    font-size: 18px;
    text-align: center;
    color: rgb(251, 0, 50);
}

.signUp-link {
    font-size: 14px;
    text-align: center;
    margin: 15px 0;
}

.signUp-link p{
    color: #fff;
}

.signUp-link p a {
    color: #0ef;
    text-decoration: none;
    font-weight: 500;
}

.signIn-link p a:hover{
    text-decoration: underline;
}

.signIn-link {
    font-size: 14px;
    text-align: center;
    margin: 15px 0;
}

.signIn-link p{
    color: #fff;
}

.signInBtn-link {
    margin-left: 10px;
    color: rgb(242, 248, 154);
    text-decoration: underline;
    font-weight: 500;
}

.signIn-link p a:hover{
    text-decoration: underline;
}

.unsichtbar{
    opacity: 0; 
    pointer-events: none; 
}

 .sichtbar{
    opacity: 1; 
    pointer-events:all; 
    transition: opacity 1,5s;
 }

 .logobereich{
    display: flex;
    justify-content: end;
    align-items: center;
}

hr {
    margin-top: 60px;
    border-width: 2px;
    border-color: #a79898;
}

img {
    width: 1.7rem;
    height: 1.5rem;
    margin-top: 5px;
}

#logo {
    margin-right: 10px;
}


#hilfe {
   margin-right: 3px;
   height: 1.3rem;
   width: 1.5rem;
}


