body {
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 12px;
    box-sizing: border-box;
}

.ctn-main {
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: 28% auto;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.sect-authentication {
    background-color: rgb(232, 232, 232);

}
.sect-replacement {
    background-color: rgb(13 13 39);

}

.img-logo {
    width: 300px;
    height: auto;
    padding-bottom: 100px;

}

.img-bild{
    width: 1000px;
    height: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 32px;
    image-rendering: optimizeQuality;
}

.aButton{
    width: 80px;
    height: 28px;
    background-color: #a8a8a8;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    border-radius: 4px;
    cursor: pointer;
}

.aButton:hover{
    background-color: #7c7c7c;
}

.aButton:active {
    scale: 0.98;
}

.ctn-register {
    width: 100%;
    height: auto;
    /* padding: 1px; */
    background-color: rgb(255, 255, 255);
    border-radius: 12px;
    box-shadow: 10px 10px 25px 0px rgba(51, 51, 51, 0.5);

}

.uberschrift {
    width: 100%;
    font-size: 1.3rem;
    color: rgb(55, 55, 83);
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    user-select: none;

}

.response {
    color: red;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.7rem;
    padding-left: 22px;


}


.ctn-switch {
    width: 100%;
    height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.ctn-input label {
    padding-left: 8px;
    color: rgb(72, 72, 72);
    user-select: none;

}

.ctn-input input {
    width: 100%;
    height: 28px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid rgb(168, 168, 168);
    padding-left: 8px;
    background-color: rgb(224, 224, 224);
    margin-top: 4px;
    margin-bottom: 2px;

}

.ctn-input span {
    color: rgb(118, 117, 117);
    font-size: 0.6rem;
    padding-left: 8px;
    user-select: none;
}

.show-password {
    max-height: 14px;
    max-width: 14px;

}

.ctn-input {
    padding-top: 12px;
    padding-left: 12px;
    padding-right: 12px;
}


.ctn-btns {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    height: 35px;
    padding-top: 18px;
    padding-bottom: 22px;
}

.ctn-btns a{
    min-width: 120px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(213, 213, 213);
    cursor: pointer;
    user-select: none;
    border-radius: 4px;
    color: rgb(45, 45, 45);
}

.ctn-btns a:hover{
    background-color: rgb(176, 176, 176);
}

.ctn-btns a:active{
    scale: 0.98;
}