.backButton{
    margin-top: 30px;
    margin-bottom: 20px;
    border-radius: 20px;
    height: 30px;
    width: 150px;
    text-decoration: none;
    margin-right: 30px;
}
.backButton:hover {
    background-color: darkgrey; /* Green */
    color: white;
    cursor: pointer;
    transition-duration: 0.4s;
}

.backButton a{
    text-decoration: none;
    color: black;
}
.contentCS{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 70vh;
    align-items: center;
    justify-content: center;
}
.EmailInput,.PasswordInput{
    height: 22px;
    max-width: 750px;
    min-width: 250px;
    width: 18vw;
    padding: 8px;
    border-radius: 7px;
    border: 1.5px solid var(--CSgoldBraun);
}
.resetSendButtonCS, .sendNewPasswordButtonCS, .backToStart{
    width: 150px;
    height: 40px;
    border-radius: 10px;
    color: white;
    background-color: var(--CSgoldBraun);
    border-color: 1.5px solid var(--CSgoldBraun);
    transition: 0.3s;
}
.resetSendButtonCS:hover, .sendNewPasswordButtonCS:hover, .backToStart:hover{
    transform: scale(1.1);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

}
.backToStart{
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    
}
.sendNewPasswordButtonCS:disabled{
    background-color: lightgray;
    border-color: lightgray;
    cursor: not-allowed;
}
.sendNewPasswordButtonCS:disabled:hover{
    background-color: lightgray;
    border-color: lightgray;
    cursor: not-allowed;
    transform: scale(1.0);
    box-shadow: none;
}
.backButtonCS{
    width: 150px;
    height: 40px;
    border-radius: 10px;
    background-color:lightgray;
    border-color: black;
    transition: 0.3s;
}
.backButtonCS:hover{
    transform: scale(1.1);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

}
.sendtextCS{
    max-width: 75vw;
    max-width: 700px;
    width: 80vw;
}
.formGroupNewPasswort{
    padding-bottom: 20px;
}
.linkToText{
    text-decoration: none;
    color: white;
}
.padding25px{
    padding: 25px;
}
.sendresetmailtxt{
    padding: 25px;
}