* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    overflow: hidden;
    min-height: 100vh;
    background: #0a192f;
}

#canvas3d {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.status-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    margin: 2rem 0;
    position: relative;
}

.progress {
    width: 65%;
    height: 100%;
    background: #3498db;
    border-radius: 3px;
    position: absolute;
    animation: progress 2s ease-in-out;
}

@keyframes progress {
    0% { width: 0; }
    100% { width: 65%; }
}

.container {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    width: 90%;
    margin: 5vh auto;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    backdrop-filter: blur(8px);
    z-index: 1;
    resize:vertical;
}

h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: grid;
    grid-gap: 1.5rem;
    margin-top: 2rem;
    resize:none;
}

.form-group {
    text-align: left;
    resize:none;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #34495e;
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

button {
    background: #3498db;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

#nachricht {
    resize:vertical;
    max-height: 350px;
    min-height: 120px;
}

.g-recaptcha {
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
}

@media (max-width: 768px) {
    .container {
        padding: 0.5rem;
    }
    h1 {
        font-size: 2rem;
    }
    body {
        overflow: auto;
    }
}