.ile-form {
    max-width: 480px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 24px;
    font-family: Inter, system-ui, sans-serif;
}

.ile-progress {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.ile-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #9b51e0, #008da9);
    transition: width .3s ease;
}

.ile-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.ile-field {
    margin-bottom: 14px;
}

.ile-field label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: #444;
}

.ile-field input,
.ile-field select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.ile-field input:focus {
    outline: none;
    border-color: #9b51e0;
}

.ile-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.ile-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    background: linear-gradient(90deg, #9b51e0, #008da9);
    color: #fff;
    font-weight: 600;
}

.ile-btn.ile-prev {
    background: #f3f3f3;
    color: #444;
}

.ile-btn:hover {
    opacity: .92;
}

@media (max-width: 600px) {
    .ile-form {
        margin: 20px 12px;
        padding: 18px;
    }
}
