@font-face{
    font-family: 'Poppins Light';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face{
    font-family: 'Poppins Bold';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


h1, h2, h3, h4, h5, h6, p {
    color: black;
    font-family: 'Poppins Light';
}

.header {
    position: fixed;
    width: 320px;
    max-width: 320px;
    min-width: 320px;
    background-color: transparent;
    color: rgb(0, 0, 0);
    padding: 10px 10px;
    margin: 10px 10px;
    font-family: 'Poppins Light';
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.1s, color 0.1s;
    border-radius: 25px;
    border: none; 
    cursor: pointer;
    text-decoration: none;
}

.header .big{
    font-family: 'Poppins Bold';
}

.header:active {
    background-color: rgb(195, 195, 195);
    transform: scale(0.97);
}

@media (max-width: 900px) {
    .header {
        width: 98vw;
        max-width: 98vw;
        min-width: 0;
        margin: 8px 1vw;
        padding: 8px 2vw;
        font-size: 1em;
        border-radius: 25px;
    }
}



.signup-container {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0e0e0;
    padding: 0;
    position: static;
    transform: none;
    box-shadow: none;
}

.signup-container .signupframe {
    background: rgba(255,255,255,0.38);
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    padding: 38px 36px 32px 36px;
    min-width: 320px;
    max-width: 370px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin: 32px 0;
    position: static;
    top: unset;
    left: unset;
    transform: none;
    transition: box-shadow 0.18s;
    animation: popInCard 0.7s cubic-bezier(.4,0,.2,1);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1.5px solid rgba(255,255,255,0.22);
}

@keyframes popInCard {
    0% { opacity: 0; transform: scale(0.93) translateY(40px);}
    80% { opacity: 1; transform: scale(1.03) translateY(-6px);}
    100% { opacity: 1; transform: scale(1) translateY(0);}
}

@media (max-width: 600px) {
    .signup-container .signupframe {
        min-width: 0;
        max-width: 98vw;
        padding: 18px 4vw;
    }
}

.signup-container .signupframe input,
.signup-container .signupframe select {
    width: 100%;
    height: 44px;
    margin-bottom: 18px;
    padding: 0 14px;
    border-radius: 25px;
    font-family: 'Poppins Light';
    border: 1.5px solid #bbb;
    font-size: 1rem;
    background: rgba(255,255,255,0.65);
    box-shadow: 0 1.5px 6px rgba(0,0,0,0.04);
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s, transform 0.18s;
    outline: none;
    animation: popInInput 0.5s cubic-bezier(.4,0,.2,1);
    backdrop-filter: blur(6px) saturate(180%);
    -webkit-backdrop-filter: blur(6px) saturate(180%);
    border: 1.5px solid rgba(187,187,187,0.38);
}

@keyframes popInInput {
    0% { opacity: 0; transform: scale(0.96) translateY(18px);}
    80% { opacity: 1; transform: scale(1.03) translateY(-4px);}
    100% { opacity: 1; transform: scale(1) translateY(0);}
}

.signup-container .signupframe input:focus,
.signup-container .signupframe select:focus {
    border-color: #000000;
    box-shadow: 0 2px 12px #eaf1fe;
    background: rgba(246,248,250,0.85);
    transform: scale(1.03);
}

.signup-container .signupframe input:active,
.signup-container .signupframe select:active {
    background-color: rgba(241,241,241,0.85);
    transform: scale(0.98);
}

.signup-container .signupframe .continueframe .continuebutton {
    width: 100%;
    height: 48px;
    background: rgba(0,0,0,0.85);
    border: none;
    border-radius: 25px;
    font-family: 'Poppins Bold';
    color: #fff;
    font-size: 1.08em;
    text-align: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    transition: background 0.22s cubic-bezier(.4,0,.2,1), color 0.18s, box-shadow 0.18s, transform 0.13s;
    outline: none;
    margin: 0;
    animation: popInInput 0.5s cubic-bezier(.4,0,.2,1);
    backdrop-filter: blur(4px) saturate(180%);
    -webkit-backdrop-filter: blur(4px) saturate(180%);
}

.signup-container .signupframe .continueframe .continuebutton:hover,
.signup-container .signupframe .continueframe .continuebutton:focus {
    background: rgba(75,75,75,0.95);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px #eaf1fe;
}

.signup-container .signupframe .continueframe .continuebutton:active {
    background: rgba(34,34,34,0.95);
    transform: scale(0.99);
}

.signup-container .signupframe .phone-prefix {
    width: 32%;
    min-width: 90px;
    height: 44px;
    border: 1.5px solid #bbb;
    border-radius: 25px;
    font-family: 'Poppins Light';
    font-size: 1rem;
    padding-left: 10px;
    background: rgba(255,255,255,0.65) url("data:image/svg+xml;utf8,<svg fill='black' height='18' viewBox='0 0 24 24' width='18' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 12px center/18px 18px;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s, transform 0.18s;
    appearance: none;
    -webkit-appearance: none;
    backdrop-filter: blur(6px) saturate(180%);
    -webkit-backdrop-filter: blur(6px) saturate(180%);
    border: 1.5px solid rgba(187,187,187,0.38);
}

.signup-container .signupframe .phone-prefix:focus {
    border-color: #414141;
    box-shadow: 0 2px 12px #eaf1fe;
    background: rgba(246,248,250,0.85);
}

.signup-container .signupframe h2 {
    text-align: center;
    font-family: 'Poppins Bold';
    color: black;
    padding: 20px 0 10px 0;
    font-size: 2em;
    letter-spacing: 0.5px;
}



.site-footer {
    
    background: #222;
    color: #fff;
    padding: 30px 0 10px 0;
    text-align: center;
    width: 100%;
    position: static; /* Wichtig: kein fixed oder absolute! */
    font-family: 'Poppins Light', sans-serif; /* Poppins für Footer */
}

.footer-links {
    margin-bottom: 10px;
}
.footer-links a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
    font-family: 'Poppins Light', sans-serif; /* Poppins für Links */
}
.footer-links a {
    position: relative;
    transition: color 0.2s;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 100%;
    height: 3px;
    background: rgb(195, 195, 195);
    border-radius: 25px;
    transform: scaleX(0);
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
    transform-origin: center;
    translate: -50% 0;
}

.footer-links a:hover {
    color: rgb(195, 195, 195);
    transform: scale(0.95);
}

.footer-links a:hover::after {
    transform: scaleX(1);
}
.footer-copy {
    font-size: 0.9rem;
    color: #aaa;
    font-family: 'Poppins Light', sans-serif; /* Poppins für Copy */
}

#lang-select {
    font-family: 'Poppins Light', sans-serif;
    font-size: 1.08em;
    padding: 8px 36px 8px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 25px;
    background: #f8f8fa url('data:image/svg+xml;utf8,<svg fill="black" height="18" viewBox="0 0 24 24" width="18" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 14px center/18px 18px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: border 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
    color: #222;
    cursor: pointer;
    min-width: 120px;
    box-sizing: border-box; /* verhindert rechten Abstand */
}
#lang-select:focus {
    border-color: #5e5e5e;
    box-shadow: 0 0 0 2px #cce6ff;
    background-color: #f0f7ff;
}
#lang-select:hover {
    border-color: #838383;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    scale: 0.97;
    color: #838383;
}
.footer-lang label {
    margin-right: 10px;
    font-weight: 500;
    color: #444;
    font-family: 'Poppins Light', sans-serif; /* Poppins für Label */
}
.footer-lang {
    margin: 16px 0 10px 0;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins Light', sans-serif; /* Poppins für Lang */
}

.footer-lang:active {
    color: #616161;
    transition: color 0.2s, text-decoration 0.2s;
    scale: 0.98;
}
#lang-select::-ms-expand {
    display: none;
}
#lang-select option {
    background: #fff;
    color: #222;
    font-family: 'Poppins Light', sans-serif;
}

@media (max-width: 900px) {
    #lang-select {
        width: 100%;
        min-width: 80px;
        max-width: 180px;
        box-sizing: border-box;
        margin: 0 auto;
        display: block;
    }
    .footer-lang {
        flex-direction: column;
        gap: 6px;
        max-width: 180px;
        width: 100%;
        align-items: center;
        margin: 10px auto;
        display: flex;
    }
}