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

/* 🔹 Body */
body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

#login{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    padding-bottom: 4em;
    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(255,255,255,0.35);
    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(18px);

    z-index:10;
}

.form {
    width:400px;
    padding: 24px;
}

.label-text {
    font-size: 22px;
    font-weight: 500;
    color: #1f241d;
    margin-bottom: 8px;
    display:block;
}


.input {
    width:100%;
    padding: 12px;
    border: 2px solid rgb(218, 218, 218);
    outline: none;
    border-radius:6px;
    font-size: 18px;
}

.enter-button{
    margin-top:12px;
    padding:12px;
    width:100%;

    background-color:#1f241d;
    color:white;

    border:none;
    border-radius:6px;

    cursor:pointer;
    font-size:18px;
}

.enter-button:hover{
    background-color:#333;
}

.password-wrapper{
    position:relative;
    width:100%;
}

.password-wrapper .input{
    width:100%;
    padding:12px;
    padding-right:40px;
}

.eye{
    position:absolute;
    right:12px;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
    font-size:16px;
    user-select:none;
}



/* 🔹 Container */
.container {
    width: 100%;
}

/* 🔹 Image Sections (Full Width) */
.item {
    width: 100%;
    overflow: hidden;
}

.item img,
.item picture {
    width: 100%;
    height: auto;
    display: block;
}

/* 🔹 Video Sections */
.video-section-one {
    width: 100%; /* 👉 HIER Farbe ändern */
    background-color: #1f241d;
    padding: 0; /* Abstand oben/unten */
    display: flex;
    justify-content: center;
}

.video-section-two {
    width: 100%; /* 👉 HIER Farbe ändern */
    background-color: #1f241d;
    padding: 0; /* Abstand oben/unten */
    display: flex;
    justify-content: center;
}
/* 🔹 Video selbst */
.video-section-one video {
    width: 74%;
    height: auto;
    display: block;
    margin-left: -4px;
}
.video-section-two video {
    width: 72%;
    height: auto;
    display: block;
    margin-left: -2px;
}
/* 🔹 Kleine Fixes gegen weiße Linien */
.item + .item,
.item + .video-section,
.video-section + .item {
    margin-top: -2px;
}

/* 🔹 Mobile */
@media (max-width: 768px) {
    .form {
        width:300px;
        padding: 24px;
    }
    
    video-section video {
        width: 90%;
    }

    .video-section {
        padding: 40px 0;
    }
    .video-section-one video {
        width: 100%;
        margin-left: -4px;
    }   
    .video-section-two video {
        width: 100%;
        margin-left: -2px;
    }
}