/* ===== BEWERBUNGS-SPEZIFISCHE STYLES ===== */
.bewerbungs-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    border-left: 3px solid cyan;
}

.form-section h2 {
    color: cyan;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 25px;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #00FF00;
    margin-bottom: 5px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00FF00;
    border-radius: 4px;
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: cyan;
    box-shadow: 0 0 8px cyan;
}

.kleiner-hinweis {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
    font-style: italic;
}

.form-actions {
    text-align: center;
    margin-top: 40px;
}

.form-actions .action-btn {
    min-width: 250px;
    font-size: 1.2rem;
    padding: 12px 30px;
}

/* Login-Button speziell */
.login-btn {
    background: #5865F2;
    border-color: #5865F2;
    color: white;
}
.login-btn:hover {
    background: #4752C4;
    border-color: #4752C4;
    color: white;
    box-shadow: 0 0 20px #5865F2;
}