/* ---------------------- login ----------------------- */

footer {
    width: 100%;
    margin: 0;
}

.loginContainer {
    margin: 7vh auto;
    padding: 32px;
    max-width: 500px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}

.loginContainer h2 {
    text-align: center;
}

.loginContainer h2 img {
    max-width: 250px;
}

.loginContainer form .buttonStyle {
    font-size: 1.25rem;
    display: block;
}

form {
    display: block;
}

.eingabe {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    padding: 15px 0;
    width: 100%;
}

.eingabe>.headline {
    font-size: 0.8125rem;
    font-family: 'Source Sans 3', sans-serif;
    color: #454545;
}

input,
select {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    margin: 10px 0;
    padding: 10px;
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--font-color);
    background: transparent;
    outline: none;
}

input:hover {
    background: var(--bg-color);
}

.check {
    display: flex;
    padding-bottom: 20px;
}

.check input {
    width: 45px;
    margin-right: 10px;
}

.registerLink {
    padding-top: 20px;
    text-align: center;
}

#showPasswordBtn,
#showPasswordBtn2 {
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 25px;
    z-index: 2;
    cursor: pointer;
    background: url('../assets/img/icon-eye.svg') center no-repeat;
}

.stepcontainer {
    display: flex;
    overflow: hidden;
}

.step {
    display: none;
    width: 100%;
    padding: 0 20px;
    transition: transform 0.4s ease;
}

.step a.buttonStyle {
    display: inline-block;
}

.step a.disabled {
    cursor: not-allowed;
    color: var(--font-color);
    background-color: #cacaca;
    border-color: #cacaca;
    position: relative;
}

.step a.disabled::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    background-color: rgba(125, 125, 125, 0.5);
}

.active {
    display: block;
    transform: translateX(0);
    /* Startposition für aktives Element festlegen */
}

.movingleft {
    transform: translateX(-100%);
    /* Zielposition für linksbewegende Elemente */
}

.movingright {
    transform: translateX(100%);
    /* Zielposition für rechtsbewegende Elemente */
}

.buttonContainer {
    display: flex;
    justify-content: space-between;
}

.progress-container {
    padding: 0 15px;
    margin-bottom: 15px;
}

.progress-background {
    background-color: #cacaca;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    width: 0;
    height: 25px;
    font-size: 0;
    background-color: var(--confirm-green);
    transition: width 0.4s ease;
}

.firstname {
    display: none;
    visibility: hidden;
}

.forgetPasswordLink {
    padding-bottom: 1rem;
    margin-top: -1rem;
    position: relative;
    z-index: 2;
}

.forgetPasswordLink a {
    font-size: 0.9rem;
}