.apply-section {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center; /* Zentriert den Header */
}

/* Neuer Header-Bereich für Apply */
.apply-header {
    margin-bottom: 40px;
}

.apply-header h2 {
    font-size: 3.5rem; /* Gleiche Größe wie bei Support/Livemap */
    margin-bottom: 10px;
}

.apply-desc {
    color: #ccc;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.apply-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto; /* Zentriert die Box unter der Überschrift */
    background: rgba(104, 71, 188, 0.1);
    border-left: 5px solid #6847bc;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 5px;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease;
    text-align: left; /* Text innerhalb der Form bleibt linksbündig */
}

.apply-container:hover {
    transform: scale(1.03);
    border-color: #00fbff; /* Akzent-Türkis beim Hover */
}

.apply-title {
    font-family: 'Oswald', sans-serif;
    text-align: center;
    color: #6847bc;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 2.2rem;
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.apply-form input, 
.apply-form select, 
.apply-form textarea {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px;
    border-radius: 4px;
    outline: none;
    transition: 0.3s;
}

.apply-form select option {
    background-color: #111;
    color: #fff;
}

.apply-form input:focus, 
.apply-form select:focus, 
.apply-form textarea:focus {
    border-color: #6847bc;
}

.apply-submit-btn {
    background: #6847bc;
    color: #fff;
    width: 100%;
    padding: 15px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
    font-family: 'Oswald', sans-serif;
}

.apply-submit-btn:hover {
    filter: brightness(1.2);
    letter-spacing: 1px;
}