body {
    background-color: #121212;
    color: #eee;
    font-family: sans-serif;
}
.soratix-form-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.soratix-form-container label {
    display: block;
    margin-bottom: 1rem;
}
.soratix-form-container input,
.soratix-form-container select {
    width: 100%;
    padding: 0.5rem;
    background: #2c2c2c;
    color: #eee;
    border: 1px solid #444;
    border-radius: 6px;
}
input[type="submit"] {
    background: #007bff;
    border: none;
    color: white;
    padding: 0.75rem;
    cursor: pointer;
    border-radius: 6px;
}
input[type="submit"]:hover {
    background: #0056b3;
}
.message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
}
.message.success { background-color: #28a745; }
.message.error { background-color: #dc3545; }
.progress-bar {
    margin-bottom: 1rem;
}
.progress-label {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}
.progress {
    background: #333;
    border-radius: 6px;
    overflow: hidden;
    height: 12px;
}
.progress-filled {
    height: 100%;
    background: #00c853;
}
.form-header-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}
